The descriptive state of the trigger will help you know the status clearly. Also excluding triggers not related to user tables.
Check out the code below:
SELECT OBJECT_NAME(parent_id) [Table_Name],[name] [Trigger_Name], Case When is_disabled=0 then 'Enabled' Else 'Disabled' End [Trigger_Status], is_disabled FROM sys.triggers where OBJECT_NAME(parent_id) is not null
ikram.chatha May 11 '18 at 15:55 2018-05-11 15:55
source share