Viewing post 1 (of 1 total)
This may work better for the trigger references:
SELECT DISTINCT SUBSTRING( SO.NAME, 1, 60 ) AS [Trigger Name]
FROM sysobjectsAS SO
JOIN syscommentsAS SC
ON SO.ID...
December 1, 2010 at 10:15 am
#1257486