select distinct
b.name as proc_name,
c.name as table_name
from sysdepends a
left join sysobjects b on b.id = a.id
left join sysobjects c on c.id = a.depid
where 1=1
and b.xtype = 'P'
and b.name = '[프로시저명]'
'DATABASE > MSSQL' 카테고리의 다른 글
[MSSQL] 전체 데이터베이스에서 명령문 수행 / SP_MSFOREACHDB (1) | 2023.05.15 |
---|---|
[MSSQL] 반복문을 통한 특정 단어 포함한 테이블 조회, 특정 테이블을 사용하는 프로시저 조회 (1) | 2023.02.16 |