REM File Name: OraMonAcc.sql
REM Description: Script to create OraMon Oracle Account 
REM Usage: Run from sys or privileged Oracle account
REM        Assigns USERS as default and TEMP as temporary tablespace
REM 

CREATE USER ORAMON
IDENTIFIED BY ORAMON
DEFAULT TABLESPACE USERS
TEMPORARY TABLESPACE TEMP;

GRANT CONNECT to ORAMON;
GRANT SELECT_CATALOG_ROLE to ORAMON;
