SQL Server 2005: T-SQL to temporarily disable a trigger - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T09:01:12Zhttp://stackoverflow.com/feeds/question/123558http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/123558/sql-server-2005-t-sql-to-temporarily-disable-a-trigger4SQL Server 2005: T-SQL to temporarily disable a triggerAustin Salonen2008-09-23T20:13:41Z2008-10-21T07:33:06Z
<p>Is it possible to disable a trigger for a batch of commands and then enable it when the batch is done?</p>
<p>I'm sure I could drop the trigger and re-add it but I was wondering if there was another way.</p>
http://stackoverflow.com/questions/123558/sql-server-2005-t-sql-to-temporarily-disable-a-trigger/123566#1235667Answer by Matt Rogish for SQL Server 2005: T-SQL to temporarily disable a triggerMatt Rogish2008-09-23T20:14:26Z2008-09-23T20:14:26Z<p>DISABLE TRIGGER { [ schema_name . ] trigger_name [ ,...n ] | ALL }
ON { object_name | DATABASE | ALL SERVER } [ ; ]</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms189748" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms189748</a>(SQL.90).aspx</p>
<p>followed by the inverse:</p>
<p>ENABLE TRIGGER { [ schema_name . ] trigger_name [ ,...n ] | ALL }
ON { object_name | DATABASE | ALL SERVER } [ ; ]</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms182706" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms182706</a>(SQL.90).aspx</p>
http://stackoverflow.com/questions/123558/sql-server-2005-t-sql-to-temporarily-disable-a-trigger/123677#1236776Answer by HLGEM for SQL Server 2005: T-SQL to temporarily disable a triggerHLGEM2008-09-23T20:35:14Z2008-09-23T20:35:14Z<p>However, it is almost always a bad idea to do this. You will mess with the integrity of the database. Do not do it without considering the ramifications and checking with the dbas if you have them. </p>
<p>If you do follow Matt's code be sure to remember to turn the trigger back on. ANd remember the trigger is disabled for everyone inserting, updating or deleting from the table while it is turned off, not just for your process, so if it must be done, then do it during the hours when the database is least active (and preferably in single user mode).</p>
<p>If you need to do this to import a large amount of data, then consider that bulk insert does not fire the triggers. But then your process after the bulk insert will have to fix up any data integrity problems you introduce by nor firing the triggers. </p>
http://stackoverflow.com/questions/123558/sql-server-2005-t-sql-to-temporarily-disable-a-trigger/123966#1239662Answer by kristof for SQL Server 2005: T-SQL to temporarily disable a triggerkristof2008-09-23T21:20:24Z2008-10-02T09:16:37Z<p>Sometimes to populate an empty database from external data source or debug a problem in the database I need to disable ALL triggers and constraints.
To do so I use the following code:</p>
<p><strong>To disable all constraints and triggers:</strong></p>
<pre><code>sp_msforeachtable "ALTER TABLE ? NOCHECK CONSTRAINT all"
sp_msforeachtable "ALTER TABLE ? DISABLE TRIGGER all"
</code></pre>
<p><strong>To enable all constraints and triggers:</strong></p>
<pre><code>exec sp_msforeachtable @command1="print '?'", @command2="ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all"
sp_msforeachtable @command1="print '?'", @command2="ALTER TABLE ? ENABLE TRIGGER all"
</code></pre>
<p>I found that solution some time ago on <a href="http://www.sqlservercentral.com/articles/Administering/enabledisable/177/" rel="nofollow">SQLServerCentral</a>, but needed to modify the enable constraints part as the original one did not work fully</p>
http://stackoverflow.com/questions/123558/sql-server-2005-t-sql-to-temporarily-disable-a-trigger/221060#221060-1Answer by graffic for SQL Server 2005: T-SQL to temporarily disable a triggergraffic2008-10-21T07:33:06Z2008-10-21T07:33:06Z<p>I'm planning to use this on a 'ON DUPLICATE UPDATE' query, where I plan to delete the entry and insert it again. Thus, I don't want to fire any 'on cascade delete' when deleting because I'm gonna insert the key again.</p>