禁用或启用数据库所有触发器

禁用或启用数据库所有触发器。

 

禁用:

 

use test
exec sp_msforeachtable "alter table ? disable trigger all" 
go

 

启用:

use test
exec sp_msforeachtable "alter table ? enable trigger all"  
go

 

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐