tags:

views:

31

answers:

1

Hi,

I want to check if all the triggers are on or not on the SQL Db I am working on. How can I achieve that? Thanks,

+1  A: 

In SQL Server, you can do this:

Select * From sys.triggers

Randy Minder
Thanks!There is an is_disabled column in the result set.
burak ozdogan
Gosh, it's nice to hear/see someone actually say thanks. Thanks for saying "thanks" :)
Randy Minder