Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

List of triggers, SQL Server 2000

Status
Not open for further replies.

dgillz

Instructor
Mar 2, 2001
10,038
US
In SQL Enterprise Manager, I can right click a table and go to tasks, manage triggers. However, I don't really feel like do this to 500 tables. Is there no way to get a list of triggers in SQL Server 2000?

Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports

"What version of URGENT!!! are you using?
 
you could use this as a start:
Code:
select object_name(parent_obj), name
from sysobjects
where type = 'TR'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top