Skip to main content

Oracle GoldenGate: Overview, Architecture, and Silent Installation

🪄 Oracle GoldenGate: Overview, Architecture, and Silent Installation

Oracle GoldenGate (OGG) is a real-time data replication and integration tool. It enables the replication of data across heterogeneous systems, ensuring high availability, disaster recovery, and data distribution for analytics or migration purposes.

📌 What is Oracle GoldenGate?

Oracle GoldenGate captures transactional data changes from a source system and applies them to a target system in real-time. It supports unidirectional, bidirectional, and cascading replication setups.

  • Real-time replication
  • Heterogeneous platform support
  • Low impact on source system

📤 Extract Process in GoldenGate

Extract is a data capture process that reads changes from the source database.

🔹 Types of Extract

  • Classic Extract: Reads redo/archived logs from Oracle database. Used in non-integrated mode.
  • Integrated Extract: Uses Oracle Streams infrastructure for better performance and support of complex data types. Works with Oracle 11g R2 and above.
  • Initial Load Extract: Captures data for initial load purposes without tracking changes.

📥 Replicat Process in GoldenGate

Replicat reads trail files and applies the data to the target database.

🔹 Types of Replicat

  • Classic Replicat: Applies SQL operations to target in commit order.
  • Integrated Replicat: Works with Oracle’s apply engine for performance and scalability.
  • Coordinated Replicat: One Replicat group managing multiple threads for performance.
  • Parallel Replicat: Similar to Coordinated, but with parallel execution from extract to apply.

🚀 What is the Pump Process?

The Data Pump is a secondary Extract group. It reads the local trail created by the primary Extract and sends it to the target system.

  • Ensures no data is lost during network failures
  • Reduces load on source system
  • Supports filtering and transformation

🛠 GoldenGate 21c Silent Installation Steps

📂 Step 1: Prepare Directories and Permissions

mkdir /acfs01/ogg21c
chown -R ggudb:oinstall /acfs01/ogg21c

mkdir -p /opt/app/ogg21c
chown -R ggudb:oinstall /opt/app/ogg21c

📦 Step 2: Copy and Unzip GoldenGate Binary

cp 213000_fbo_ggs_Linux_x64_Oracle_shiphome.zip /acfs01/ogg21c/
cd /acfs01/ogg21c
unzip 213000_fbo_ggs_Linux_x64_Oracle_shiphome.zip

📝 Step 3: Update the Response File

Edit the oggcore.rsp file at /acfs01/ogg21c/fbo_ggs_Linux_x64_Oracle_shiphome/Disk1/response

INSTALL_OPTION=ORA21c
SOFTWARE_LOCATION=/opt/app/ogg21c
START_MANAGER=FALSE
MANAGER_PORT=7809
DATABASE_LOCATION=/opt/oracle/product/19.3.0/db_1
INVENTORY_LOCATION=/opt/app/oraInventory
UNIX_GROUP_NAME=oinstall

🖥️ Step 4: Run the Silent Installer

cd /acfs01/ogg21c/fbo_ggs_Linux_x64_Oracle_shiphome/Disk1

./runInstaller -silent -showprogress -waitforcompletion -ignoreSysPrereqs \
-responseFile /acfs01/ogg21c/fbo_ggs_Linux_x64_Oracle_shiphome/Disk1/response/oggcore.rsp

🔁 Step 5: Verify the Installation

cd /opt/app/ogg21c/
./ggsci

✅ Conclusion

  • GoldenGate is a powerful and flexible replication solution.
  • Extract captures changes, Replicat applies them, and Pump safely transports them.
  • With silent installation, you can easily automate deployments.

Now you're ready to replicate data with Oracle GoldenGate like a pro! 🚀

Comments

Popular posts from this blog

🚀 Automating Oracle Database Patching with Ansible: A Complete Guide

Oracle database patching has long been the bane of DBAs everywhere. It's a critical task that requires precision, expertise, and often results in extended maintenance windows. What if I told you that you could automate this entire process, reducing both risk and downtime while ensuring consistency across your Oracle estate? 💡 In this comprehensive guide, I'll walk you through a production-ready Ansible playbook that completely automates Oracle patch application using OPatch. Whether you're managing a single Oracle instance or hundreds of databases across your enterprise, this solution will transform your patch management strategy! 🎯 🔥 The Challenge: Why Oracle Patching is Complex Before diving into the solution, let's understand why Oracle patching is so challenging: 🔗 Multiple dependencies : OPatch versions, Oracle Home configurations, running processes ⚠️ Risk of corruption : Incorrect patch application can render databases unusable ⏰ Downtime requirements : Da...

🚀 DB BOT: Real-Time Oracle & GoldenGate Monitoring in Slack

In today's fast-paced DevOps environment, quick access to database metrics is essential. This blog will walk you through creating a Slack bot that provides real-time monitoring of Oracle databases and Golden Gate replication. With simple slash commands, your team can check tablespace usage, Flash Recovery Area status, and Golden Gate replication health directly in Slack. Project Overview Our "DB Bot" offers these key capabilities: Monitor tablespace usage across multiple Oracle databases Check Flash Recovery Area (FRA) status on multiple databases View GoldenGate process status across different servers List GoldenGate credential stores Monitor replication lag in GoldenGate Prerequisites Node.js v14+ Python 3.6+ Oracle client libraries (instantclient_21_19) Access to Oracle databases and GoldenGate servers A Slack workspace with permissions to add apps   Project Structure oracle-slack-bot...

Oracle Golden Gate Bi-directional Replication Implementation Guide

Oracle GoldenGate (OGG) is a comprehensive software package for real-time data integration and replication in heterogeneous IT environments. Bi-directional replication enables organizations to maintain synchronized data across multiple data centers, providing high availability, disaster recovery, and load distribution capabilities. This detailed guide provides step-by-step instructions for implementing Oracle GoldenGate bi-directional replication between two Oracle databases. Architecture Overview In this setup, we'll configure: TestDC1 : Primary data center with TestDB1 TestDC2 : Secondary data center with TestDB2 Bi-directional sync : Changes flow in both directions with conflict resolution Step 1: Software Installation ⚠️ SERVER EXECUTION: Perform these steps on BOTH TestDC1 and TestDC2 servers Step 1.1: Download and Prepare Software First, create the necessary directory structure and prepare for installation: # Create directory for the software mkdir /data01/ogg_setup cd /d...