Created
April 20, 2011 09:30
-
-
Save max-mulawa/930830 to your computer and use it in GitHub Desktop.
DML Trigger Sinppet 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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