Using Liquibase with Oracle ATP & ADW
Oracle Autonomous Database is an Oracle Cloud product with a set of services that deliver automated patching, upgrades, and tuning. It includes:
- Autonomous Transaction Processing (ATP) – an Autonomous Database service that can instantly scale to meet demands of mission critical transaction processing and mixed workload applications.
- Autonomous Data Warehouse (ADW) – a fully autonomous data warehousing environment that scales elastically, delivers fast query performance, and requires no database administration.
For more information, see the Oracle Cloud documentation page.
Supported versions
- 19c – officially supported
Prerequisites
- Install Liquibase.
- Create a Liquibase project folder to store all Liquibase files. You can do this manually or with the init project command.
- Create a new Liquibase properties file or use the
liquibase.properties
file included in the installation package. For more information, see Specifying Properties in a Connection Profile.
Install drivers
To use Liquibase and Oracle ATP or Oracle ADW, you need the JDBC driver JAR file:
Ensure you downloaded the Oracle JDBC driver JAR file (Maven download) to connect to the Oracle database. You can download ojdbc8.jar
or ojdbc10.jar
. The ojdbc10.jar
file is certified with JDK10 and JDK11, and the ojdbc8.jar
file is certified with JDK8, JDK9, and JDK11.
Note: It is best practice to use the Oracle Database 18c (or higher) drivers. Also, the following additional .jar
files are required: oraclepki.jar
, osdt_cert.jar
, and osdt_core.jar
. For more information, see Using Oracle Autonomous Database on Shared Exadata Infrastructure.
liquibase/lib
directory.
If you use Maven, you also need to download the driver JAR file and configure your Maven pom.xml
file to use the local copy of the driver. For example:
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>21.5.0.0</version>
</dependency>
Test your connection
Ensure that you have created:
- An Oracle Autonomous Database with ATP or ADW via the Oracle Cloud Infrastructure Console.
- An access control list while providing your IP address.
Ensure that your Oracle ATP or ADW database is configured:
- Download the Wallet to connect to the database:
- Log into your Oracle Cloud account.
- Navigate to Autonomous Database and select DB Connection > Wallet Type > Download.
- Enter a secure password for the Wallet and download the ZIP file to save the client security credentials.
- Unzip the Wallet and place it somewhere safe in your file system to prevent unauthorized database access.
- Navigate to the Wallet folder and update the
ojdbc.properties
file with the following:- Comment out the
oracle.net.wallet_location
line. - Set
javax.net.ssl.trustStorePassword
to the Wallet password that you entered to download the Wallet. - Set
javax.net.ssl.keyStorePassword
to the Wallet password that you entered to download the Wallet.
#oracle.net.wallet_location=(SOURCE=(METHOD=FILE)(METHOD_DATA=(DIRECTORY=${TNS_ADMIN}))) javax.net.ssl.trustStore=${TNS_ADMIN}/truststore.jks javax.net.ssl.trustStorePassword=my_wallet_password javax.net.ssl.keyStore=${TNS_ADMIN}/keystore.jks javax.net.ssl.keyStorePassword=my_wallet_password
- Comment out the
- In the Wallet folder, open the
sqlnet.ora
and ensure thatSSL_SERVER_DN_MATCH=yes
.
- Specify the database URL in the Liquibase properties file:
Note: For alternative secure connection methods, see Connecting to Autonomous Database.
url: jdbc:oracle:thin:@<database_name>_high?TNS_ADMIN=/path/to/Wallet_<database_name>
Note: If you use Windows, ensure the TNS_ADMIN
path to your wallet folder includes double slashes in the URL property.
Example: url: jdbc:oracle:thin:@databaseName_high?TNS_ADMIN=path//to//Wallet_databaseName
Tip: To apply a Liquibase Pro key to your project, add the following property to the Liquibase properties file: liquibaseProLicenseKey: <paste code here>
- Create a text file called changelog (
.xml
,.sql
,.json
, or.yaml
) in your project directory and add a changeset. - Navigate to your project folder in the CLI and run the Liquibase status command to see whether the connection is successful:
- Inspect the SQL with the update-sql command. Then make changes to your database with the update command.
- From a database UI tool, ensure that your database contains the
test_table
you added along with the DATABASECHANGELOG table and DATABASECHANGELOGLOCK table.

<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
xmlns:pro="http://www.liquibase.org/xml/ns/pro"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd
http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-latest.xsd">
<changeSet id="1" author="Liquibase">
<createTable tableName="test_table">
<column name="test_id" type="int">
<constraints primaryKey="true"/>
</column>
<column name="test_column" type="varchar"/>
</createTable>
</changeSet>
</databaseChangeLog>

-- liquibase formatted sql
-- changeset liquibase:1
CREATE TABLE test_table (test_id INT, test_column VARCHAR(256), PRIMARY KEY (test_id))
Tip: Formatted SQL changelogs generated from Liquibase versions before 4.2 might cause issues because of the lack of space after a double dash ( -- ). To fix this, add a space after the double dash. For example: -- liquibase formatted sql
instead of --liquibase formatted sql
and -- changeset myname:create-table
instead of --changeset myname:create-table

databaseChangeLog:
- changeSet:
id: 1
author: Liquibase
changes:
- createTable:
columns:
- column:
name: test_column
type: INT
constraints:
primaryKey: true
nullable: false
tableName: test_table

{
"databaseChangeLog": [
{
"changeSet": {
"id": "1",
"author": "Liquibase",
"changes": [
{
"createTable": {
"columns": [
{
"column":
{
"name": "test_column",
"type": "INT",
"constraints":
{
"primaryKey": true,
"nullable": false
}
}
}]
,
"tableName": "test_table"
}
}]
}
}]
}
liquibase --username=test --password=test --changelog-file=<changelog.xml> status
Note: You can pass arguments in the CLI or keep them in the Liquibase properties file.
liquibase --changelog-file=<changelog.xml> update-sql
liquibase --changelog-file=<changelog.xml> update

