
What is a Trigger:
In ASE, trigger is a piece of SQL code that gets executed automatically when a specific action on a specific table happens.
What are the actions that fire the trigger?
A Trigger can be fired on 3 actions: Insert, Update or Delete or any combination of them.
How many Triggers we can have per table?
Prior to ASE 16.0 you could have one code running for Inserts, Updates or Deletes or for partial or total group. I.e. one trigger...