Ever Lost Your Triggers
Ever have an issue locating your triggers w/ MS SQL Server Management Studio or forget what triggers are running? Well this snippet should lend you a hand:
USE [dbname] SELECT * FROM sys.triggers WHERE is_disabled = 0 -- Enabled ORDER BY [Name]; GO


Recent Comments
SureshReddy Lakshmi wrote:
SELECT column FROM tableORDER BY RAND()
Jef wrote:
haha. I had just begun my...
Rob White wrote:
I need to post mine. My...