How to disable multiple triggers of a table at at a time?

Showing Answers 1 - 7 of 7 Answers

gouthami

  • Aug 13th, 2006
 

Alter table tablename disable all triggers;

srinivas

  • Aug 23rd, 2006
 

ALTER TABLE<TABLE  NAME> DISABLE ALL TRIGGER

  Was this answer useful?  Yes

Brijesh Mishra

  • Oct 9th, 2006
 

SQL> Spool c:tempdisable_all_trigger

SQL> Select 'ALTER TRIGGER '|| trigger_name ||' disable;' from user_triggers;

SQL> spool off

after that open file disable_all_trigger.lst and remove header part and save file.

SQL>@c:tempdisable_all_trigger.lst

  Was this answer useful?  Yes

Raghavendra

  • Nov 19th, 2006
 

Alter table <table name> disable all trigger;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions