Skip to content

Instantly share code, notes, and snippets.

@ststeiger
Created January 28, 2016 14:06
Show Gist options
  • Select an option

  • Save ststeiger/eaca25700c60f3e20ce9 to your computer and use it in GitHub Desktop.

Select an option

Save ststeiger/eaca25700c60f3e20ce9 to your computer and use it in GitHub Desktop.
Create Schema if not exists
--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