au.net.causal.maven.plugins.boxdb.db.oracle-create-database.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boxdb-maven-plugin Show documentation
Show all versions of boxdb-maven-plugin Show documentation
Maven plugin to start databases using Docker and VMs
whenever sqlerror exit 1;
CREATE USER ${box.databaseUser} IDENTIFIED BY ${box.databasePassword} DEFAULT TABLESPACE users QUOTA UNLIMITED ON users;
GRANT CONNECT TO ${box.databaseUser};
GRANT CREATE TABLE TO ${box.databaseUser};
GRANT CREATE SYNONYM TO ${box.databaseUser};
GRANT CREATE TYPE TO ${box.databaseUser};
GRANT CREATE VIEW TO ${box.databaseUser};
GRANT CREATE SEQUENCE TO ${box.databaseUser};
GRANT CREATE TRIGGER TO ${box.databaseUser};
EXIT;