Skip to content

Instantly share code, notes, and snippets.

@max-mulawa
Created April 20, 2011 09:30
Show Gist options
  • Save max-mulawa/930830 to your computer and use it in GitHub Desktop.
Save max-mulawa/930830 to your computer and use it in GitHub Desktop.
DML Trigger Sinppet 3
CREATE TRIGGER dbo.Customers_AfterUpdate
ON dbo.Customers
AFTER UPDATE
AS
BEGIN
PRINT 'After Update'
END
GO
DISABLE TRIGGER dbo.Customers_AfterUpdate ON dbo.Customers;
GO
ENABLE TRIGGER dbo.Customers_AfterUpdate ON dbo.Customers;
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment