Created
April 7, 2015 18:06
-
-
Save mikaelweave/f2c6893803d8fe5d9a5b to your computer and use it in GitHub Desktop.
Drop SQL View if it exists
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
IF EXISTS(SELECT * FROM sys.views WHERE name = 'e_note' AND schema_id = SCHEMA_ID('dbo')) | |
DROP VIEW dbo.e_note | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment