All Downloads are FREE. Search and download functionalities are using the official Maven repository.

au.net.causal.maven.plugins.boxdb.db.sqlserver-linux-create-database.sql Maven / Gradle / Ivy

use master;
go
create login ${box.databaseUser} with password='${box.databasePassword}', check_expiration=off, check_policy=off;
go
create database ${box.databaseName} COLLATE ${box.databaseCollation};
go
use ${box.databaseName};
go
create user ${box.databaseUser} for login ${box.databaseUser};
go
exec sp_addrolemember 'db_owner', '${box.databaseUser}';
go




© 2015 - 2024 Weber Informatics LLC | Privacy Policy