What is difference between triggers and stored procedures.
And advantages of SP over triggers ?
Answer Posted / ravi singh
Procedures:
- A procedure is PL/SQL block which is used to process a value and need to execute explicitly.
- Procedure can be call when required and it don't have any dependency on any DML operations on any table.
- Procedure can be called from any area of the code.
- You can pass IN/OUT parameters to the procedure through which you can use the output of the procedures.
Triggers:
- Triggers are PL/SQL block which are based on the events and got executed on the happening of any DML event on the specific table.
- They cannot be called or you cannot stop them from execution.
- You can write commit in the triggers with the help of autonomous transaction only.
- You can refer the values of the table with whom the trigger is linked with the help of :new and :old variables.
Advantages and Disadvantages: They both are mentioned in the above two posted answers.
But one main advantage of triggers over procedures is if you want to perform any action on the DML event of any table you should use triggers as you dont need to make a seperate call for your code.
One main disadvantage of triggers you cannot stop them being executed if you want to do it you have to explicitly disable the trigger.
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
What is user in sql?
How to start oracle sql developer?
What is integrity in sql?
What is indexing oracle sql?
How can I delete duplicate rows?
How do you declare a user-defined exception?
What is the purpose of a secondary key?
Are there any features that are decommissioned in 11g that are not present in 11g?
Cite the differences between execution of triggers and stored procedures?
what is collation? : Sql dba
How do I view a view in sql?
How to rename a table?
What are the disadvantages of not performing database normalization?
What is pl sql block structure?
What is the difference between a procedure and a function?