Disable Triggers
Summary: in this tutorial, you will learn how to disable triggers by using theALTER TABLE ... DISABLE TRIGGER statement.
Introduction to ALTER TABLE…DISABLE TRIGGER statement
To disable a trigger, you use theALTER TABLE...DISABLE TRIGGER statement.
When you disable a trigger, it remains in the database but won’t activate when an event associated with the trigger occurs.
Here’s the basic syntax of theALTER TABLE...DISABLE TRIGGER statement:
ALTER TABLE table_nameDISABLE TRIGGER trigger_name | ALLIn this syntax,
- First, specify the name of the table to which the trigger belongs after the
ALTER TABLEkeywords. - Second, specify the name of the trigger you want to disable after the
DISABLE TRIGGERkeywords, or use theALLkeyword to disable all triggers associated with the table.
Suppose you want to disable the trigger associated with theemployees table, you can use the following statement:
ALTER TABLE employeesDISABLE TRIGGER log_last_name_changes;To disable all triggers associated with theemployees table, you use the following statement:
ALTER TABLE employeesDISABLE TRIGGER ALL;Summary
- Use the
ALTER TABLE ... DISABLE TRIGGERstatement to disable a trigger or all triggers associated with a table.
Last updated on
Was this page helpful?
Thank you for your feedback!