Unable to find where triggers are stored in sql server 2008

Solution 1:

You can find Triggers under Table node:

enter image description here

Solution 2:

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.

Solution 3:

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.