Triggers

A trigger is a special form of stored procedure that is executed automatically when a statement that modifies data is executed. You use triggers whenever referential integrity and other declarative constraints are insufficient.

You may want to enforce a more complex form of referential integrity involving more detailed checking, or you may want to enforce checking on new data, but allow legacy data to violate constraints. Another use for triggers is in logging the activity on database tables, independent of the applications using the database.

Note

There are three special statements that triggers do not fire after: LOAD TABLE, TRUNCATE, and WRITETEXT.

 Permissions to execute triggers
 Trigger types
 Trigger events
 See also
 Trigger times

Creating triggers
Trigger execution
Altering triggers
Dropping triggers
Temporarily disabling trigger operations
Permissions to execute triggers
Advanced information on triggers