Unable to find where triggers are stored in sql server 2008 Unable to find where triggers are stored in sql server 2008 sql-server sql-server

Unable to find where triggers are stored in sql server 2008


You can find Triggers under Table node:

enter image description here


Under the Tables node in SSMS (SQL Server Management Studio), for each table there is a Triggers node.

You can manage your triggers from there.


Here is a better way:

select a.[name] as trgname, b.[name] as [tbname] from sys.triggers a join sys.tables b on a.parent_id = b.object_id

Just be sure to run it against the database where you think the trigger is located.