Skip to content

Commit 36dd791

Browse files
author
Jacek Gębal
committed
Update of deployment scripts
1 parent b32ac61 commit 36dd791

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/scripts/install_demo_project.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,13 @@ git clone -b develop --single-branch https://github.com/utPLSQL/utPLSQL-demo-pro
88
cat > demo_project.sh.tmp <<EOF
99
sqlplus -S -L sys/oracle@//localhost:1521/${SERVICE_NAME} AS SYSDBA <<SQL
1010
PROMPT Creating Database User ${DB_USER}
11+
PROMPT create user ${DB_USER} identified by ${DB_PASS} quota unlimited on USERS default tablespace USERS;
12+
PROMPT grant create session, create procedure, create type, create table, create sequence, create view to ${DB_USER};
13+
PROMPT grant connect to ${DB_USER};
14+
PROMPT grant select any dictionary to ${DB_USER};
1115
create user ${DB_USER} identified by ${DB_PASS} quota unlimited on USERS default tablespace USERS;
1216
grant create session, create procedure, create type, create table, create sequence, create view to ${DB_USER};
17+
grant connect to ${DB_USER};
1318
grant select any dictionary to ${DB_USER};
1419
exit
1520
SQL

0 commit comments

Comments
 (0)