Search
 
SCRIPT & CODE EXAMPLE
 

SQL

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
Comment

disable trigger sql server

DISABLE TRIGGER { [ schema_name . ] trigger_name [ ,...n ] | ALL }  
ON { object_name | DATABASE | ALL SERVER } [ ; ]
-- DISABLE Trigger ALL ON ALL SERVER;   
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql extract day from date leading zero 
Sql :: coalesce function in sql server 
Sql :: sql table 
Sql :: sql drop all tables 
Sql :: sql create cluster index 
Sql :: sql change column name based on value 
Sql :: first mysql 
Sql :: connect by query in oracle 
Sql :: t-sql never ending delete 
Sql :: get specific column in mongodb 
Sql :: sqlyog clear cache query 
Sql :: mdl ddl acl 
Sql :: what is drop in sql 
Sql :: SQL Server modify_timestamp trigger 
Sql :: Get a list of tables and the primary key 
Sql :: collation in sql 
Sql :: uuid sqlalcomany 
Sql :: SELECT ALL TABLE INFO 
Sql :: insert json file to mssql 
Sql :: make selected text uppercase mssql 
Sql :: postgresql inheritance 
Sql :: database stuck at restoring state 
Sql :: view column type sql server 
Sql :: how to put 0 or 000 depending IDCustomer length in sql server 
Sql :: t sql first and last day of week 
Sql :: create and attach user to a postgresql database 
Sql :: replace function in sql 
Sql :: sqlite trim 
Sql :: postgres drop type 
Sql :: SQL UNIQUE Constraint 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =