Created
January 28, 2016 14:06
-
-
Save ststeiger/eaca25700c60f3e20ce9 to your computer and use it in GitHub Desktop.
Create Schema if not 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
| --DROP SCHEMA [Import2] | |
| IF NOT EXISTS (SELECT name FROM sys.schemas WHERE name = N'Import2') | |
| EXECUTE('CREATE SCHEMA [Import2] AUTHORIZATION [dbo]') | |
| ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment