Viewing post 1 (of 1 total)
to see also the concerned table:
SELECT ta.name AS
, tr.name AS [trigger name]
FROM dbo.sysobjects tr
INNER JOIN dbo.sysobjects ta ON tr.parent_obj = ta.id
WHERE tr.xtype...
June 14, 2008 at 6:05 am
#828879