Mega Code Archive

 
Categories / MSSQL Tutorial / System Functions
 

Limiting Trigger Nesting

3> 4> USE master 5> GO Changed database context to 'master'. 1> -- Disable nesting 2> EXEC sp_configure 'nested triggers', 0 3> RECONFIGURE WITH OVERRIDE 4> GO Configuration option 'nested triggers' changed from 1 to 0. Run the RECONFIGURE statement to install. 1> -- Enable nesting 2> EXEC sp_configure 'nested triggers', 1 3> RECONFIGURE WITH OVERRIDE 4> GO Configuration option 'nested triggers' changed from 0 to 1. Run the RECONFIGURE statement to install. 1> 2>