File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,12 @@ jobs:
29
29
- name : Install Oracle Instant Client
30
30
run : |
31
31
cd $RUNNER_TEMP
32
- # Download the desired Oracle Instant Client zip files
32
+ # Download the desired Oracle Instant Client zip files and SQL*Plus packages
33
33
curl -sSfLO "https://download.oracle.com/otn_software/linux/instantclient/2390000/instantclient-basic-linux.x64-23.9.0.25.07.zip"
34
+ curl -sSfLO "https://download.oracle.com/otn_software/linux/instantclient/2390000/instantclient-sqlplus-linux.x64-23.9.0.25.07.zip"
34
35
# Unzip the packages into a single directory
35
36
unzip -q -o "instantclient-basic-linux.x64-23.9.0.25.07.zip"
37
+ unzip -q -o "instantclient-sqlplus-linux.x64-23.9.0.25.07.zip"
36
38
# Install the operating system libaio package
37
39
sudo ln -s /usr/lib/x86_64-linux-gnu/libaio.so.1t64 /usr/lib/libaio.so.1
38
40
# Update the runtime link path
59
61
SYS_PASS=$(docker logs $CONTAINER_ID 2>&1 | grep "DATABASE IS READY TO USE!" -B20 | grep "SYS Password:" | awk '{print $3}')
60
62
echo "SYS_PASS=$SYS_PASS" >> $GITHUB_ENV
61
63
62
- - name : Create tablespace and grant user access
64
+ - name : Alter user quota on tablespace SYSAUX
63
65
run : |
64
66
cat <<'EOF' > alter_user.sql
65
67
ALTER USER $GORM_ORACLEDB_USER QUOTA UNLIMITED ON SYSAUX;
You can’t perform that action at this time.
0 commit comments