I want to delete and modify previously created triggers but i cant find them anywhere in database. Where they exist and how to edit or delele them
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.