SQL server查看触发器是否被禁用
Posted scc-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL server查看触发器是否被禁用相关的知识,希望对你有一定的参考价值。
1 select a.name as 触发器名,b.name as 表名, 2 case a.is_disabled when 0 then ‘启用‘ when 1 then ‘禁用‘ else ‘未知错误‘ end as 状态 3 from sys.triggers a,sys.sysobjects b 4 where a.parent_id=b.id and a.type=‘TR‘ and b.name=‘Market_Indent_T‘
以上是关于SQL server查看触发器是否被禁用的主要内容,如果未能解决你的问题,请参考以下文章