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
Jef wrote:
haha. I had just begun my...
Rob White wrote:
I need to post mine. My...
Chinese translation wrote:
This is great, I was looking...