SQL Sever 查询所有触发器和存储过程

如下

select name from sysobjects where xtype='TR'; ----所有触发器
select name from sysobjects where xtype='P'; ----所有存储过程
select name from sysobjects where xtype='V'; ----所有视图
select name from sysobjects where xtype='U'; ----所有表 

完。

 

上一篇:动态SQL环境搭建


下一篇:mysql设置用户登录host的权限