InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference In Execution Of Triggers And Stored Procedures? |
|
Answer» A TRIGGER is automatically EXECUTED without any action required by the user, whereas, a STORED procedure needs to be explicitly INVOKED. A trigger is automatically executed without any action required by the user, whereas, a stored procedure needs to be explicitly invoked. |
|