MS SQL Server: How to get a list of all triggers in a SQL Server database
This script will give you a list of all trigger for a given SQL Server database

0 Comments   Posted by retroman80s on Aug 25, 2009   322 Views   Report Abuse
Tags: triggers, sql server

Bookmark and Share

Just execute the following sql script to get a list of triggers.

select * from sys.triggers;

 


Comments

Login or Register to add a comment.