123456789101112131415161718192021222324252627 |
- if not exists(select s.schema_id from sys.schemas s where s.name = 'data')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [data] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'import')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [import] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'imr_csv')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [imr_csv] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'optima')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [optima] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'template')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [template] authorization [dbo]'
- end
- GO
|