查询某张表被哪些存储过程或者视图用到的sql语句

select distinct object_name(id) from syscomments  
where id in (select id from sysobjects where type  in('V','P'))  
and text like '%tablename%' 

  其中sysobjects 中的type V=View P=Proc 

posted @ 2014-05-05 21:47  cclazy  阅读(4420)  评论(0编辑  收藏  举报