sql server 查询某个表被哪些存储过程调用
Posted lonelyxmas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql server 查询某个表被哪些存储过程调用相关的知识,希望对你有一定的参考价值。
原文:sql server 查询某个表被哪些存储过程调用sql server 查询某个表被哪些存储过程调用
select distinct object_name(id) from syscomments where id in (select id from sysobjects where type =’P’) and text like’%TableName%’
以上是关于sql server 查询某个表被哪些存储过程调用的主要内容,如果未能解决你的问题,请参考以下文章