 
 
  
  
 ASA SQL User's Guide
  Using Procedures, Triggers, and Batches
    Introduction to triggers
Once you create a trigger, it remains in the database until someone explicitly removes it. You must have ALTER permissions on the table associated with the trigger to drop the trigger.
To delete a trigger (Sybase Central)
Open the Triggers folder.
Right-click the desired trigger and choose Delete from the popup menu.
To delete a trigger (SQL)
Connect to a database.
Execute a DROP TRIGGER statement.
The following statement removes the trigger mytrigger from the database:
DROP TRIGGER mytrigger
For more information, see DROP statement.
 
 
  
 