Answers for "sql disable trigger"

SQL
1

sql disable trigger

//use the following commands 
//disable
ALTER TABLE table_name DISABLE TRIGGER tr_name
//enable
ALTER TABLE table_name ENABLE TRIGGER tr_name
Posted by: Guest on February-25-2022
0

disable trigger sql server

DISABLE TRIGGER { [ schema_name . ] trigger_name [ ,...n ] | ALL }  
ON { object_name | DATABASE | ALL SERVER } [ ; ]
-- DISABLE Trigger ALL ON ALL SERVER;
Posted by: Guest on April-02-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language