DBTool/MSSQL
테이블 트리거확인
말없제이
2013. 2. 25. 09:49
-- 테이블 트리확인
select 'sp_helptext ' + t.name
FROM sys.sysobjects AS t
INNER JOIN sys.sysobjects AS o
ON t.parent_obj = o.id
WHERE
t.xtype ='TR'
and o.name like 'DSCTB_'