Oracle Instant Client is packaged with Datical 6.x and 7.x versions. Liquibase Enterprise. Depending on your environment, you will need to set environment variables and install additional libraries.
...
After installing Datical version 6.x run the following command to verify Oracle Instant Client is configured correctly:
[centos@ip-172-30-3-146 instantclient]$ /opt/datical/DaticalDB/instantclient/sqlplus -v
You should see eg. SQL*Plus: Release 12.1.0.2.0 Production
If you receive the below errors do the following:
[centos@ip-172-30-3-146 instantclient]$ /opt/datical/DaticalDB/instantclient/sqlplus -v
/opt/datical/DaticalDB/instantclient/sqlplus: error while loading shared libraries: libsqlplus.so: cannot open shared object file: No such file or directorySet the following in the .bashrc
export ORACLE_HOME=/opt/datical/DaticalDB/instantclient
export LD_LIBRARY_PATH=/opt/datical/DaticalDB/instantclient
export PATH=$PATH:$ORACLE_HOME
...
[centos@ip-172-30-3-146 instantclient]$ /opt/datical/DaticalDB/instantclient/sqlplus -v
/opt/datical/DaticalDB/instantclient/sqlplus: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directoryRun:
sudo yum install libaio
or:
sudo apt-get install libaio1 libaio-dev
Reference: https://stackoverflow.com/questions/10619298/libaio-so-1-cannot-open-shared-object-file
[centos@ip-172-30-3-146 instantclient]$ /opt/datical/DaticalDB/instantclient/sqlplus -v
/opt/datical/DaticalDB/instantclient/sqlplus: error while loading shared libraries: libnsl.so.1: cannot open shared object file: No such file or directoryRun:
...
yum install
...
libnsl*
or:
sudo apt-get install
...
Windows Instructions
After installing Datical version 6.x/7.x, run the following command to verify Oracle Instant Client is configured correctly:
C:\Users\Administrator\DaticalDB\instantclient>sqlplus -v
You should see eg. SQL*Plus: Release 12.1.0.2.0 Production
You will want to add the instantclient directory to your Path environment variable as well