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
Try to Use:
select * from sys.objects where type='tr' and name like '%_Insert%'