• Another way would be this!

    select CASE OBJECTPROPERTY(OBJECT_ID(name), 'ExecIsTriggerDisabled')

    WHEN 1 THEN 'Disabled'

    ELSE 'Enabled' END as Status

    from sysobjects o

    where o.type='TR'

    ---------------------------------------------------------------------------------