search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

Table of Contents
1. Set Up Version Control for Database Code
2. Configure Jenkins Pipeline
3. Use Database Migration Tools (Optional but Recommended)
4. Secure and Monitor Deployments
Home Database Oracle How to build a CI/CD pipeline for Oracle database changes using Jenkins

How to build a CI/CD pipeline for Oracle database changes using Jenkins

Dec 31, 2025 am 06:24 AM

Store Oracle database changes in Git with versioned scripts. 2. Create Jenkinsfile for automated pipeline stages: checkout, validate, test, deploy. 3. Use Liquibase for change management and rollback. 4. Secure credentials, add approval gates, and enable auditing and notifications.

How to build a CI/CD pipeline for Oracle database changes using Jenkins

To build a CI/CD pipeline for Oracle database changes using Jenkins, you need to automate the process of validating, testing, and deploying database schema or data changes in a reliable and repeatable way. The goal is to reduce manual errors, improve deployment speed, and maintain version control over database code.

1. Set Up Version Control for Database Code

Store all your Oracle database change scripts (DDL, DML, PL/SQL) in a Git repository. Each change should be versioned and organized logically.

  • Create a directory structure like /migrations/V1__create_table.sql, /migrations/V2__add_column.sql
  • Use meaningful names and incremental versions to track changes
  • Include rollback scripts if needed (e.g., V2__add_column_rollback.sql)
  • Ensure team members commit changes with proper pull requests and reviews

2. Configure Jenkins Pipeline

Create a Jenkinsfile in your project root to define the pipeline stages. Use a Declarative or Scripted Pipeline based on your needs.

  • Set up a Jenkins job that triggers on Git commits (via webhook or polling)
  • Define stages: Checkout, Validate, Test, Deploy (to dev/staging), Approve, Deploy to Production
  • Use environment variables for credentials (never hardcode passwords)
Example Jenkinsfile snippet:
pipeline {
    agent any
    environment {
        ORACLE_HOST = 'db-dev.example.com'
        ORACLE_SID = 'ORCL'
        ORACLE_USER = 'ci_user'
        ORACLE_PASSWORD = credentials('db-cicd-pass')
    }
    stages {
        stage('Checkout') {
            steps {
                checkout scm
            }
        }
        stage('Validate SQL Syntax') {
            steps {
                sh 'sqlplus -L ${ORACLE_USER}/${ORACLE_PASSWORD}@${ORACLE_HOST}/${ORACLE_SID} @validate_syntax.sql'
            }
        }
        stage('Deploy to Dev') {
            steps {
                sh 'sqlplus ${ORACLE_USER}/${ORACLE_PASSWORD}@${ORACLE_HOST}/${ORACLE_SID} @apply_changes.sql'
            }
        }
        stage('Run Unit Tests') {
            steps {
                sh 'sqlplus ${ORACLE_USER}/${ORACLE_PASSWORD}@${ORACLE_HOST}/${ORACLE_SID} @run_tests.sql'
            }
        }
    }
}

Integrate tools like Liquibase or Flyway to manage Oracle schema changes more effectively.

  • Liquibase supports Oracle and tracks deployed changes via a changelog table (databasechangelog)
  • Define changes in XML, YAML, or SQL format
  • In Jenkins, run liquibase update to apply pending changes
  • Add rollback steps using liquibase rollback for safety
Example:
stage('Apply Migration') {
    steps {
        sh 'cd db && liquibase --url=jdbc:oracle:thin:@${ORACLE_HOST}:1521:${ORACLE_SID} \
              --username=${ORACLE_USER} \
              --password=${ORACLE_PASSWORD} update'
    }
}

4. Secure and Monitor Deployments

Ensure security and traceability across environments.

  • Use Jenkins Credentials Store for DB passwords and keys
  • Restrict production deployments with manual approval gates (input step in Jenkins)
  • Log all changes applied, including timestamp, script name, and Jenkins build ID
  • Send notifications (email, Slack) on success/failure
  • Audit who made changes and when using Git history and Jenkins logs

Basically, it's about treating database code like application code — versioned, tested, and deployed automatically. With Jenkins orchestrating the flow and proper tooling in place, Oracle database deployments become safer and faster.

The above is the detailed content of How to build a CI/CD pipeline for Oracle database changes using Jenkins. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

ArtGPT

ArtGPT

AI image generator for creative art from text prompts.

Stock Market GPT

Stock Market GPT

AI powered investment research for smarter decisions

Popular tool

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use Oracle APEX to build a low-code app? (Rapid Development) How to use Oracle APEX to build a low-code app? (Rapid Development) Mar 13, 2026 am 12:48 AM

OracleAPEXislow-glue,notno-code:itskipsinfrastructurebutrequiresSQL,PL/SQL,anddeclarativelogic;ApplicationProcesseshandleserver-sidevalidationandsideeffects,DynamicActionsmanageclient-sideinteractivity;InteractiveGridneedskey-preservedsourcesforediti

How to implement Transparent Data Encryption (TDE) in Oracle? (Data Security) How to implement Transparent Data Encryption (TDE) in Oracle? (Data Security) Mar 13, 2026 am 12:14 AM

OracleTDE must first enable and open the encrypted wallet (Wallet), otherwise ORA-28365 will be reported when executing ALTERTABLESPACE...ENCRYPTION; Wallet needs to be created, opened and managed through the ADMINISTERKEYMANAGEMENT command, and the path must be explicitly configured in sqlnet.ora and permissions must be ensured.

How to manage Flashback Data Archive_Flashback Data Archive table space allocation How to manage Flashback Data Archive_Flashback Data Archive table space allocation Mar 28, 2026 pm 04:06 PM

The reason why the FlashbackDataArchive table space is full is that the hidden history table (SYS_FBA_HIST_XXXXXX) occupies the table space where the main table is located and does not go through ASSM cleaning; you need to use ALTERFLASHBACKARCHIVE...MODIFYTABLESPACE to migrate to the local management automatic segment space table space, and manually clean up the orphan history table.

How to patch Oracle Grid Infrastructure? (System Maintenance) How to patch Oracle Grid Infrastructure? (System Maintenance) Mar 10, 2026 am 01:00 AM

Three things must be confirmed before applying the GI patch: 1. The opatchlsinventory-detail output of each node is consistent; 2. OCR and VoteDisk are online and crsctlcheckcluster-all and ocrcheck both return SUCCESS; 3. $GRID_HOME/crs/install/rootcrs.sh-prepatch has been successfully executed.

How to troubleshoot the Oracle Listener startup? (Network Services) How to troubleshoot the Oracle Listener startup? (Network Services) Mar 10, 2026 am 12:58 AM

Oraclelistenerstartupfailuresstemfromsilentlistener.oraparsingerrors,hostnameresolutionissues,orpermissionproblems—notbinariesorports;validatesyntaxwithreload,checkownership,verifyactualconfigpath,testDNS,useexplicitIPs,confirmADR_BASE,enabletracingp

How to grant flashback permission_GRANT FLASHBACK ON and FLASHBACK ANY TABLE How to grant flashback permission_GRANT FLASHBACK ON and FLASHBACK ANY TABLE Apr 03, 2026 pm 11:54 PM

FLASHBACK permissions must be explicitly granted: GRANTFLASHBACKONschema.tableTOuser for a single table, and GRANTFLASHBACKANYTABLETOuser for all tables; basic permissions such as SELECT and ALTER and row movement enablement are also required.

How to use JSON data types in Oracle Database? (NoSQL Features) How to use JSON data types in Oracle Database? (NoSQL Features) Mar 08, 2026 am 01:03 AM

In Oracle's JSON scenario, you should select VARCHAR2 (4000CHAR) plus ISJSON constraints (small documents) or BLOB plus ISJSON constraints (large documents), and disable CLOB; ISJSON is a column-level constraint syntax, not a function call; the JSON_VALUE path must be a string literal; JSON_EXISTS needs to be speeded up with the JSON_VALUE function index.

How to grant SYSDBA permissions_sysdba management of password files and OS authentication How to grant SYSDBA permissions_sysdba management of password files and OS authentication Apr 03, 2026 am 08:54 AM

Ordinary users can be authorized through GRANTSYSDBATOusername; provided that the database enables password file authentication (REMOTE_LOGIN_PASSWORDFILE=EXCLUSIVE) and has logged in with SYS; there is no need to restart after authorization, but the connection needs to explicitly specify assysdba, and the user credentials must exist in the V$PWFILE_USERS view.

Related articles