Use the following SQL to get list of all triggers in database:
select tbl = object_name(parent_obj), "trigger" = name FROM sysobjects
where type = 'TR' order by tbl
Use the following SQL to get list of all triggers in database:
select tbl = object_name(parent_obj), "trigger" = name FROM sysobjects
where type = 'TR' order by tbl
at 10/15/2008
Tags: SQL
Architecture
A.T.F.
References