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

SQL server 查询某个表在哪些存储过程(SP)中使用到

时间:2014-11-24 16:46:04      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:blog   os   使用   sp   div   log   bs   as   tt   

1.查询某个表被哪些存储过程(以下简称 SP)使用到 :

select distinct object_name(id) from syscomments where id in

(select id from sysobjects where type =‘P‘) and text like‘%TableName%‘

 

2.查找那些过程对该表做了更新操作:

select distinct object_name(id) from syscomments where id in

(select id from sysobjects where type =‘P‘) and text like‘%update tablename%‘

SQL server 查询某个表在哪些存储过程(SP)中使用到

标签:blog   os   使用   sp   div   log   bs   as   tt   

原文地址:http://www.cnblogs.com/yzl495/p/4118750.html

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