Oracle/PLSQL: Disable all Triggers on a table
The syntax for a disabling all Triggers on a table is:
ALTER TABLE table_name DISABLE ALL TRIGGERS;
For example:
If you had a table called orders and you wanted to disable all triggers on this table, you could execute the following command:
ALTER TABLE orders DISABLE ALL TRIGGERS;