Question : How to disable nested triggers in a SQL statement

Hi

  Could somone advice me on how I could disable a nested trigger in a SQL statement.

  ex: In update customers set last_name = 'Smith' where Id = 10, I need to say dont fire any triggers.

Any help is greatly appreciated.

Thanks  

Answer : How to disable nested triggers in a SQL statement

to disable nested triggers

sp_configure 'nested triggers' , 0
go
reconfigure with override
go

Random Solutions  
 
programming4us programming4us