SELECT name AS 'Trigger Name', OBJECT_NAME(parent_obj) AS 'Table' FROM sysobjects WHERE xtype = 'TR'
The results will be in this format.
From here, you can enumerate their contents like this
sp_helptext TriggerName
You can also view all the triggers associated with a particular table with this code.
sp_helptrigger TableName
Remember Me
a@href@title, strike
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.