dbTalk Databases Forums  

How to view all triggers

comp.databases.ms-sqlserver comp.databases.ms-sqlserver


Discuss How to view all triggers in the comp.databases.ms-sqlserver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
kwilla
 
Posts: n/a

Default How to view all triggers - 02-28-2007 , 06:37 AM






I need a way to view all existing triggers in our MS Server database
especially since I don't know what tables are involved.

Thanks,

kwilla


Reply With Quote
  #2  
Old   
MC
 
Posts: n/a

Default Re: How to view all triggers - 02-28-2007 , 06:51 AM






SQL Server 2000:
select *
from sysobjects
where xtype ='TR'


SQL Server 2005:
Select *
from sys.triggers


MC


"kwilla" <kwilla (AT) comcast (DOT) net> wrote

Quote:
I need a way to view all existing triggers in our MS Server database
especially since I don't know what tables are involved.

Thanks,

kwilla




Reply With Quote
  #3  
Old   
kwilla
 
Posts: n/a

Default Re: How to view all triggers - 02-28-2007 , 02:00 PM



On Feb 28, 7:51 am, "MC" <marko.culoNOS... (AT) gmail (DOT) com> wrote:
Quote:
SQL Server 2000:
select *
from sysobjects
where xtype ='TR'

SQL Server 2005:
Select *
from sys.triggers

MC

"kwilla" <kwi... (AT) comcast (DOT) net> wrote in message

news:1172666233.553151.165650 (AT) j27g2000cwj (DOT) googlegroups.com...



I need a way to view all existing triggers in our MS Server database
especially since I don't know what tables are involved.

Thanks,

kwilla- Hide quoted text -

- Show quoted text -
Thanks!



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.