LuoCore

https://www.cnblogs.com/guorongtao/p/13329618.html

 

SELECT 
    object_name(a.parent_obj) as [表名]
    ,a.name as [触发器名称]
    ,(case when b.is_disabled=0 then \'启用\' else \'禁用\' end) as [状态]
    ,b.create_date as [创建日期]
    ,b.modify_date as [修改日期]
    ,c.text as [触发器语句]
FROM sysobjects a
    INNER JOIN sys.triggers b
        ON b.object_id=a.id
    INNER JOIN syscomments c
        ON c.id=a.id

分类:

技术点:

相关文章:

  • 2022-01-13
  • 2022-02-05
  • 2022-01-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-13
  • 2021-12-18
  • 2022-12-23
  • 2021-10-15
  • 2022-01-08
相关资源
相似解决方案