Database CI/CD and Schema Migration with Oracle

Estimated: 20 mins
Database CI/CD and Schema Migration with Oracle

Oracle Database is a robust, scalable relational database widely used in enterprises. It excels in complex data management, offering high availability, security, and features like cloud integration and machine learning, making it ideal for transaction processing and data warehousing.

This tutorial is a step-by-step guide to set up Database Change Management for Oracle in Bytebase. With Bytebase, a team can have a formalized review and rollout process to make Oracle database schema change and data change.

Bytebase provides a GUI for teams to perform database changes and retain full migration history. Bytebase Free Plan is sufficient for this tutorial.

Prerequisites

Before you start, make sure you have the following downloaded and installed:

Step 1 - Deploy Bytebase via Docker

  1. Make sure your Docker is running, and start the Bytebase Docker container with the following command:

    docker run --rm --init \
      --name bytebase \
      --publish 8080:8080 --pull always \
      --volume ~/.bytebase/data:/var/opt/bytebase \
      bytebase/bytebase:2.16.0
  2. Bytebase is now running via Docker, and you can access it via localhost:8080.

  3. Visit localhost:8080 in your browser. Register an account. bb-register

Step 2 - Add a Oracle Instance to Bytebase

In this tutorial, ​an Instance is your Oracle instance.

  1. Login to the Bytebase Console.

  2. Click Instances on the left sidebar and click Add Instance.

  3. Add an Oracle instance. Pay attention to Environment, let's choose Prod for this tutorial. Because there's a SQL Review policy enabled on Prod environment. You may go to Environment > Prod > SQL Review Policy to check the details. bb-add-instance-oracle

    bb-sql-review-policy

  4. On the instance detail page, click Sync Now and switch to Databases tab. You'll see your existing databases on this instance, which haven't been assigned to any project yet. bb-instance-oracle-sync

    bb-oracle-instance-db-unassigned

Step 3 - Go to a project and transfer in Oracle databases

In Bytebase, Project groups logically related Databases, Issues and Users together, which is similar to the project concept in other DevTools such as Jira and GitLab. So before you deal with the database, a Project must be presented.

In Bytebase, a Database is created by CREATE DATABASE xxx. A database always belongs to a single Project. An Issue represents a specific collaboration activity between Developer and DBA for when creating a database, altering a schema. It's similar to the issue concept in other issue management tools.

  1. Go to the Projects tab, and you'll see a default project called Sample Project. Click it, there are two sample PostgreSQL databases. We'll transfer Oracle databases into this project.

  2. Stay in the project Sample Project. Click on Transfer in DB to transfer databases.

    bb-project-in-db

Step 4 - Create a table in Oracle via Bytebase

  1. Stay in the project Sample project, check the database you transferred in and click on Edit Schema.

  2. You'll be redirected to an issue preview. Fill in the following SQL and click Create.

    CREATE TABLE person (
       person_id NUMBER GENERATED BY DEFAULT AS IDENTITY,
       first_name VARCHAR2 (50),
       last_name VARCHAR2 (50),
       PRIMARY KEY (person_id)
    );
  3. After automatic checks, there's a pop-up window showing a SQL Review violation -- Enforce NOT NULL constraint for columns.

    bb-sql-review-violations

  4. Click Back to edit, paste this and click Create again.

    CREATE TABLE person (
       person_id NUMBER GENERATED BY DEFAULT AS IDENTITY,
       first_name VARCHAR2 (50) NOT NULL,
       last_name VARCHAR2 (50) NOT NULL,
       PRIMARY KEY (person_id)
    );
  5. After passing the automatic checks, the issue executes and the status becomes Done.

    bb-issue-done

Summary and What's Next

Now you have connected Oracle with Bytebase, and used the UI workflow to accomplish schema change. Bytebase will record the full migration history for you.

You may also try out GitOps workflow: store your Oracle schema in GitHub and Bytebase will pick up the changes to the repo, bringing your Oracle change workflow to the next level, aka Database DevOps - Database as Code.

Edit this page on GitHub

Subscribe to Newsletter

By subscribing, you agree with Bytebase's Terms of Service and Privacy Policy.