Thread: Triggers
View Single Post

  #2 (permalink)  
Old 12-21-2006, 06:41 AM
gpraveen_mca gpraveen_mca is offline
Junior Member
 
Join Date: Aug 2006
Posts: 5
gpraveen_mca is on a distinguished road
Triggers are events that are executed whenever an insert or delete or update happens. Basically, triggers are events and the code associated with triggers is executed automatically when the event occurs. These events are purely database events.

Procedures on other hand, should be run explicitily by the user either from database or from user applications.
Reply With Quote