I created a trigger for a table in SQL Server and it works for me.
My problem is: How do find it and modify it?
I use this query to find my triggers
select so.name, text from sysobjects so, syscomments sc where type = 'TR' and so.id = sc.id and text like '%YourTableName%'
This way you can list out all the triggers associated with the given table.