Home  >  Article  >  Database  >  sqlserver查询哪些存储过程使用了某个表

sqlserver查询哪些存储过程使用了某个表

WBOY
WBOYOriginal
2016-06-07 14:57:441017browse

sqlserver查询哪些存储过程使用了某个表 无 select b.name from syscomments a,sysobjects b where a.id=b.id and a.text LIKE '%f_tblog_kpi_content_new%'

sqlserver查询哪些存储过程使用了某个表
select b.name from syscomments a,sysobjects b where a.id=b.id and a.text LIKE '%f_tblog_kpi_content_new%'
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:hive union all嵌套使用Next article:h2基本用法