| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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 = 'dwh')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [dwh] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'autoline')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [autoline] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'autosys')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [autosys] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'audev')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [audev] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'ari')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [ari] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'datev')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [datev] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'carlo')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [carlo] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'locosoft')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [locosoft] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'werwiso')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [werwiso] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = 'aa_dwh')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [aa_dwh] authorization [dbo]'
- end
- if not exists(select s.schema_id from sys.schemas s where s.name = '1_dwh')
- and exists(select p.principal_id from sys.database_principals p where p.name = 'dbo') begin
- exec sp_executesql N'create schema [1_dwh] authorization [dbo]'
- end
- GO
|