what is the difference between trigger and storedprocedures
Answer Posted / sam katwal
Both are Same
Triggers are special Stored Producedures which are created
by User whereas Stored Procedures are created by the System.
| Is This Answer Correct ? | 2 Yes | 20 No |
Post New Answer View All Answers
What are the types of subqueries?
What is difference between pls_integer and integer?
How to add a column ‘salary’ to a table employee_details?
How many sql core licenses do I need?
what are all the common sql function? : Sql dba
What is 19 null in sql?
What do you mean by field in sql?
What do you think about pl/sql?
What is the use of partition by in sql?
What is a full join?
how to check server status with 'mysqladmin'? : Sql dba
what is msql? : Sql dba
Do ddl statements need commit?
How to create an array in pl/sql?
1. is it possible to use the cursor atttibutes (%found ,% rowcount , %isopen , %notfound ) to our user defined cursor names ....... cursor cursor_name is select * from scott.emp if you use... cursor_name%found , %rowcount ,%isopen,%notfound...will it work... -------------------------- 2.what is the difference between the varray and index by table .. -------- 3. type type_name is table of number(8,3) index by binary_integer; identifier_name type_name; first , last , prior , next ,trim are the methods we can use it for the above type...simillary is there any way to apply for cursors... with thanks and regards..sarao...