This Oracle tutorial explains how to disable all triggers on a table in Oracle with syntax and examples.
Once you have created Triggers in Oracle, you might find that you are required to disable all of the triggers on a table.. You can do this with the ALTER TRIGGER statement.
The syntax for a disabling all Triggers on a table in Oracle/PLSQL is:
The name of the table that all triggers should be disabled on.
Let's look at an example that shows how to disable all triggers on a table in Oracle.
For example:
This example uses the ALTER TRIGGER statement to disable all triggers on the table called orders.