• I have updated the initial query so that it will indicate the enabled/disabled triggers in a SQL Server 2005 database.

    SELECT T.[name] as TableName,

    TR.[Name] as TriggerName,

    CASE WHEN 1=OBJECTPROPERTY(TR.[object_id], 'ExecIsTriggerDisabled')

    THEN 'Disabled'

    ELSE 'Enabled'

    END Status

    FROM sys.objects T

    INNER JOIN sys.triggers TR

    ON T.[object_id] = TR.parent_id

    WHERE (T.type = 'U' or T.type = 'V')

    ORDER BY T.[name], TR.[name];