查出MSQLserver的触发器


Select name as 触发器名称,object_name(parent_obj) as 所在表名
from sysobjects where xtype= 'TR ' order by Crdate desc

 

另一种方法

 

SELECT * FROM sys.triggers

posted on 2012-08-07 11:03  Orz..  阅读(79)  评论(0)    收藏  举报

导航