yoursyun
테이블 트리거 조회 구문 본문
테이블 트리거 조회 구문
select 'sp_helptext ' + t.name+ ' go' from sys.sysobjects t
join sys.sysobjects o
on t.parent_obj = o.id
where t.xtype ='TR'
and o.name like '테이블명%'
반응형
테이블 트리거 조회 구문
select 'sp_helptext ' + t.name+ ' go' from sys.sysobjects t
join sys.sysobjects o
on t.parent_obj = o.id
where t.xtype ='TR'
and o.name like '테이블명%'