Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/install/create_user.sql
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ accept TEMP_TABLESPACE char default &TEMP_TABLESPACE prompt 'Temporary Tablespac

accept PASSWD CHAR prompt 'Enter a password for the logger schema [] :' HIDE

create user &LOGGER_USER identified by &PASSWD default tablespace &LOGGER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
create user &LOGGER_USER identified by "&PASSWD" default tablespace &LOGGER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
/

alter user &LOGGER_USER quota unlimited on &LOGGER_TABLESPACE
alter user &LOGGER_USER quota unlimited on &LOGGER_TABLESPACE
/

grant connect,create view, create job, create table, create sequence, create trigger, create procedure, create any context to &LOGGER_USER
grant connect,create view, create job, create table, create sequence, create trigger, create procedure, create any context to &LOGGER_USER
/

prompt
Expand Down