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...

Oracle RAC Switchover & Switchback: Step-by-Step Guide

 Ensuring business continuity requires regular Disaster Recovery (DR) drills. This guide covers the Switchover and Switchback process between Primary (DC) and Standby (DR) databases . Pre-checks Before Performing Switchover Before starting the activity, ensure there are no active sessions in the database. If any are found, share the session details with the application team, get their confirmation, and terminate the sessions. Primary Database Name: PRIMARY Standby Database Name: STANDBY  Identify Active Sessions set lines 999 pages 999 col machine for a30 col username for a30 col program for a30 compute sum of count on report break on report select inst_id,username,osuser,machine,program,status,count(1) "count" from gv$session where inst_id=1 and program like 'JDBC%' group by inst_id,username,osuser,machine,program,status order by 1,2; select inst_id,username,osuser,machine,program,status,count(1) "count" from gv$session where inst_id=2 and program lik...

Mastering Oracle RAC with SRVCTL Commands

Oracle Real Application Clusters (RAC) provide high availability, scalability, and manageability for databases. One of the most powerful tools for managing RAC databases is srvctl , a command-line utility that allows administrators to control various database services. This blog explores essential srvctl commands to help you efficiently manage Oracle RAC environments. 1. Checking Database Configuration and Status  List all available databases on the host:                  srvctl config database   Check the status of a specific database and its instances:                    srvctl status database -d <database_name>   Retrieve detailed status information about a database, including its instances and states:                    srvctl status database -d <database_name> -v 2. Stopping and Starting Databases   ...