Reputation: 5442
How we can see which Trigger is Enabled or Disabled in SQL Server 2008?
Upvotes: 68
Views: 79435
Reputation: 51
Descriptive State of Trigger help you to clearly ready about status. Also excluding triggers not related with user tables.
Check the below code:
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
Upvotes: 5
Reputation: 1652
In big databases you usually don't know the table for the trigger.
SELECT OBJECT_NAME(parent_id) [table_name],[name] [trigger_name],is_disabled
FROM sys.triggers
Upvotes: 8