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.
There are three special statements that triggers do not fire after: LOAD TABLE, TRUNCATE, and WRITETEXT.
Creating a trigger on a table (Sybase Central)
Creating a trigger on a table (SQL)
Trigger execution
Altering a trigger
Dropping a trigger
Example: Temporarily disabling trigger operations
Privileges to execute triggers
Advanced information on triggers
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2014, SAP AG or an SAP affiliate company. - SAP Sybase SQL Anywhere 16.0 |