We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cc562e commit 53a3941Copy full SHA for 53a3941
.github/scripts/create_new_user.sh
@@ -21,7 +21,7 @@ sqlplus -s / as sysdba << EOF
21
-- Exit on any errors
22
WHENEVER SQLERROR EXIT SQL.SQLCODE
23
${ALTER_SESSION_CMD}
24
- CREATE USER ${DB_USER} IDENTIFIED BY "${DB_PASSWORD}" QUOTA UNLIMITED ON USERS;
25
- GRANT ALL PRIVILEGES TO ${DB_USER};
+ CREATE USER ${DB_USER} IDENTIFIED BY "${DB_PASSWORD}";
+ GRANT DB_DEVELOPER_ROLE TO ${DB_USER};
26
exit;
27
EOF
0 commit comments