Disable All Triggers in MS SQL Server Table

In MS SQL Server, run the code below to disable all TRIGGERs in a table.

ALTER TABLE {Table Name} DISABLE TRIGGER ALL


You May Interest

Benefits of Using Stored Procedures in MS SQL

What is Extensible Key Management in SQL Server ?

What is an OUTPUT Clause Inside SQL Server ?

What is RAISEERROR in SQL Server ?

What is the Difference Between CHAR and VARCHAR Datatypes in SQL ...