2017년 2월 28일 화요일

MsSql : 저장프로시져, 트리거에 특정 문자열이 있는지 검색

디비의 저장프로시져나 트리거에 특정 문자열이 있는지 검색하는 쿼리.

select distinct a.xtype, a.name
from sysobjects a with(Nolock)
join syscomments b with(Nolock)
      on a.id = b.id
where a.xtype = 'P' and b.text like '%검색문자열%'
order by a.xtype, a.name


[ xtype ]
P : 저장프로시져
TR : 트리거
V : 뷰
FN : 함수