all groups > sql server msde > march 2007 >
You're in the

sql server msde

group:

MSDE : find out what triggers are created



MSDE : find out what triggers are created chuaby NO[at]SPAM hotmail.com
3/17/2007 7:51:31 AM
sql server msde: Hi

may i know is there anyway for me to find out from any system table in
MSDE what are the triggers that have been created ?

I wish to delete all and log in a new set of triggers, just in case
some old triggers cause some problems to the new ones.

Thank you
Best regards
Boon Yiang
Re: MSDE : find out what triggers are created Hari Prasad
3/17/2007 3:40:49 PM
Hi,

From OSQL Query the SYSOBJECTS table.

use <dbname>
go
Select name from sysobjects where xtype = 'tr'

Thanks
Hari

[quoted text, click to view]

AddThis Social Bookmark Button