Skip to content

Commit 7c86299

Browse files
committed
Fixing sqlcl connect string
1 parent 62b0938 commit 7c86299

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.travis/install_utplsql.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ set -ev
44

55
cd $UTPLSQL_DIR/source
66

7-
${SQLCLI} -S -L oracle/${ORACLE_PWD} AS SYSDBA @install_headless.sql
7+
${SQLCLI} -S -L sys/${ORACLE_PWD}@//${CONNECTION_STR} AS SYSDBA @install_headless.sql
88

9-
${SQLCLI} -L -S oracle/${ORACLE_PWD} AS SYSDBA <<SQL
10-
grant select any dictionary to ut3;
11-
exit
12-
SQL
9+
#${SQLCLI} -L -S sys/${ORACLE_PWD}@//${CONNECTION_STR} AS SYSDBA <<SQL
10+
#grant select any dictionary to ut3;
11+
#exit
12+
#SQL

.travis/setup_account.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -ev
44

5-
${SQLCLI} -L -S oracle/${ORACLE_PWD} AS SYSDBA <<SQL
5+
${SQLCLI} -L -S sys/${ORACLE_PWD}@//${CONNECTION_STR} AS SYSDBA <<SQL
66
create user ${DB_USER} identified by ${DB_PASS} quota unlimited on USERS default tablespace USERS;
77
88
grant create session, create procedure, create type, create table, create sequence, create view to ${DB_USER};

source/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -ev
44

5-
${SQLCLI} -L -S ${DB_USER}/${DB_PASS} <<SQL
5+
${SQLCLI} -L -S ${DB_USER}/${DB_PASS}@//${CONNECTION_STR} <<SQL
66
whenever sqlerror exit failure rollback
77
whenever oserror exit failure rollback
88

test/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -ev
44

5-
${SQLCLI} -L -S ${DB_USER}/${DB_PASS} <<SQL
5+
${SQLCLI} -L -S ${DB_USER}/${DB_PASS}@//${CONNECTION_STR} <<SQL
66
whenever sqlerror exit failure rollback
77
whenever oserror exit failure rollback
88

0 commit comments

Comments
 (0)