SQL在全部存储过程中搜索/查找指定关键词
在全部存储过程中搜索/查找指定关键词
--列出有关键词‘abc’的存储过程 select b.name, a.text from dbo.syscomments a, dbo.sysobjects b where a.id = b.id and b.xtype = 'p' and a.text like '%abc%'
搜索/查找带有某关键字的触发器
--列出有‘abc’提示的触发器 select b.name, a.text from dbo.syscomments a, dbo.sysobjects b where a.id = b.id and b.xtype = 'tr' and a.text like '%abc%'