Disable All Trigger
Hi,
Some days back i had to disable all the triggers in database.Some R&D and Web Search gave me the perfect solution.
To Disable Trigger for the Table
Disable Trigger MyDatabase.MyTable On MyDatabase
Disable all the triggers for all servers:
DISABLE Trigger ALL ON ALL SERVER
To Enable Trigger for the Table or Server just replace Disable Keyword with enable
Enable Trigger MyDatabase.MyTable On MyDatabase
Regards
Switin
Some days back i had to disable all the triggers in database.Some R&D and Web Search gave me the perfect solution.
To Disable Trigger for the Table
Disable Trigger MyDatabase.MyTable On MyDatabase
Disable all the triggers for all servers:
DISABLE Trigger ALL ON ALL SERVER
To Enable Trigger for the Table or Server just replace Disable Keyword with enable
Enable Trigger MyDatabase.MyTable On MyDatabase
Regards
Switin
Comments
Post a Comment