码迷,mamicode.com
首页 > 数据库 > 详细

遍历SQL SERVER中所有存储过程和触发器

时间:2018-05-10 17:09:38      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:sel   sql   serve   哪些   scom   com   name   select   ike   

如果需要查找某个存储过程或触发器中是否含有某段文本(比如:你想知道有哪些存储过程操作了某个表)

可以这么写

 

select name 
from sysobjects o, syscomments s 
where o.id = s.id 
and text like ‘%text%‘ 

遍历SQL SERVER中所有存储过程和触发器

标签:sel   sql   serve   哪些   scom   com   name   select   ike   

原文地址:https://www.cnblogs.com/songr/p/9020081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!