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

SQL 查询某个表被哪些存储过程使用到

时间:2015-01-13 15:34:56      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

--1.查询某个表被哪些存储过程使用到 :
select distinct object_name(id) 
from syscomments 
where id in (select object_id from sys.objects where type =‘P‘) 
and text like‘%TableName%‘

 
--2.查找那些过程对该表做了更新操作:
select distinct object_name(id) 
from syscomments 
where id in(select object_id from sys.objects where type =‘P‘) 
and text like‘%update tablename%‘

  

SQL 查询某个表被哪些存储过程使用到

标签:

原文地址:http://www.cnblogs.com/valeb/p/4221287.html

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