OGG bi-directional replication for Oracle DB
Overview of an Active-Active Configuration
Oracle GoldenGate supports an active-active bi-directional configuration, where there are two systems with identical sets of data that can be changed by application users on either system. Oracle GoldenGate replicates transactional data changes from each database to the other to keep both sets of data current.

In a bi-directional configuration, there is a complete set of active Oracle GoldenGate processes on each system. Data captured by an Extract process on one system is propagated to the other system, where it is applied by a local Replicat process.
This configuration supports load sharing. It can be used for disaster tolerance if the business applications are identical on any two peers. Bidirectional synchronization is supported for all database types that are supported by Oracle GoldenGate.
Oracle GoldenGate supports active-active configurations for:
· DB2 on z/OS, LUW, and IBM i
· MySQL
· Oracle
· SQL Server
· Teradata
Oracle GoldenGate supports DDL replication in an Oracle active-active configuration. DDL support is available for Oracle Database, MySQL, and Teradata databases.
Preventing Data Looping
In a bidirectional configuration, SQL changes that are replicated from one system to another must be prevented from being replicated back to the first system. Otherwise, it moves back and forth in an endless loop, as in this example:
- A user application updates a row on system A.
- Extract extracts the row on system A and sends it to system B.
- Replicat updates the row on system B.
- Extract extracts the row on system B and sends it back to system A.
- The row is applied on system A (for the second time).
- This loop continues endlessly.
To prevent data loopback, you may need to provide instructions that:
- prevent the capture of SQL operations that are generated by Replicat, but enable the capture of SQL operations that are generated by business applications if they contain objects that are specified in the Extract parameter file.
- identify local Replicat transactions, in order for the Extract process to ignore them.
Preventing the Capture of Replicat Transactions (Oracle)
To prevent the capture of SQL that is applied by Replicat to an Oracle database, there are different options depending on the Extract capture mode:
· When Extract is in classic or integrated capture mode, use the TRANLOGOPTIONS parameter with the EXCLUDETAGtag option. This parameter directs the Extract process to ignore transactions that are tagged with the specified redo tag.
· When Extract is in classic capture mode, use the Extract TRANLOGOPTIONS parameter with the EXCLUDEUSER or EXCLUDEUSERID option to exclude the user name or ID that is used by Replicat to apply the DDL and DML transactions. Multiple EXCLUDEUSER statements can be used. The specified user is subject to the rules of the GETREPLICATES or IGNOREREPLICATES parameter.
Identifying Replicat Transactions (Oracle)
There are multiple ways to identify Replicat transaction in an Oracle environment. When Replicat is in classic or integrated mode, you use the following parameters:
- Use DBOPTIONS with the SETTAG option in the Replicat parameter file. Replicat tags the transactions being applied with the specified value, which identifies those transactions in the redo stream. The default SETTAG value is 00. Valid values are a single TAG value consisting of hexadecimal digits.
- Use the TRANLOGOPTIONS parameter with the EXCLUDETAG option in the Extract parameter file. The logmining server associated with that Extract excludes redo that is tagged with the SETTAG value.
· By using SETTAG and EXCLUDETAG you have more flexibility on how you configure replication between various databases. For Oracle Database 12c container databases this is the only option to avoid data looping.
The following shows how SETTAG can be set in the Replicat parameter file:
dboptions settag 0935
The following shows how EXCLUDETAG can be set in the Extract parameter file:
tranlogoptions excludetag 0935
If you are excluding multiple tags, each must have a separate TRANLOGOPTIONS EXCLUDETAG statement specified.
You can also use the transaction name or userid of the Replicat user to identify Replicat transactions. You can choose which of these to ignore when you configure Extract.
Configuration for DDL replication
After Oracle GoldenGate 12.1.2, you no longer need to run the SQL scripts such as marker_setup.sql and ddl_setup.sql to set up the DDL replication. Using the GoldenGate Integrated Capture for Oracle Database, the native DDL replication is very easy to setup.
You need to use DDL INCLUDE to specify what DDL operations you need to capture. The following example includes ALL the DDL operations. To enable replication of the newly added tables, we can also add the DDLOPTIONS ADDTRANDATA in the parameter file or run ADD SCHEMATRANDATA in GGCSI.
ddl include all
ddloptions addtrandata, report
Creating an Active-Active configuration

The figure shows Oracle GoldenGate Configuration for Active-active Synchronization. In below example, the configuration would be deployed between Oracle 12c pdbs. We will configure pdbsrc as primary system, pdbtgt as secondary system.
Prerequisites
Open Archive Log:
SQL>startup mount;
SQL>alter database archivelog;
SQL>alter database open;
Open supplemental log data and force logging:
SQL>SELECT supplemental_log_data_min, force_logging FROM v$database;
SQL>alter database add supplemental log data;
SQL>alter database force logging;
SQL>ALTER SYSTEM switch logfile;
Enabling Oracle GoldenGate in the Database:
SQL> alter system set enable_goldengate_replication = true scope=both;
Create OGG Users
SQL> startup
SQL> alter PLUGGABLE database all open;
SQL>create user c##oggadmin identified by oracle;
SQL>GRANT DBA to c##oggadmin container=all;
SQL> exec dbms_goldengate_auth.grant_admin_privilege('c##oggadmin',container=>'ALL');
SQL> alter session set container=pdbsrc;
SQL> create user west identified by oracle;
SQL> grant connect,resource to west;
SQL> alter user west quota unlimited on users;
SQL> alter session set container=pdbtgt;
SQL> create user east identified by oracle;
SQL> grant connect,resource to east;
SQL> alter user east quota unlimited on users;
Configuration from Primary System to Secondary System (pdbsrc to pdbtgt)
Configure the Extract Process (pdbsrc)
GGSCI (orcl) 59> view param etwest
extract etwest
userid c##oggadmin,password oracle
exttrail ./dirdat/ew
ddl include all
TranLogOptions Excludetag 00
sourcecatalog pdbsrc
table west.*;
GGSCI (orcl) 1> add extract etwest,integrated tranlog, begin now
GGSCI (orcl) 2> add exttrail ./dirdat/ew, extract etwest, megabytes 20
GGSCI (orcl) 5> dblogin userid c##oggadmin, password oracle
GGSCI (orcl as c##oggadmin@disdb/CDB$ROOT) 6> register extract etwest database container(pdbsrc)
GGSCI (orcl as c##oggadmin@disdb/CDB$ROOT) 7> add schematrandata pdbsrc.west
Configure the Data Pump Process (pdbsrc)
GGSCI (orcl) 60> view param pmwest
extract pmwest
passthru
rmthost orcl,mgrport 7909
rmttrail ./dirdat/rw
table pdbsrc.west.*;
GGSCI (orcl) 3> add extract pmwest, exttrailsource ./dirdat/ew
GGSCI (orcl) 4> add rmttrail ./dirdat/rw, extract pmwest, megabytes 20
Configure the Replicat Process (pdbtgt)
GGSCI (orcl) 61> view param rpeast
replicat rpeast
userid c##oggadmin@pdbsrc, password oracle
discardfile rpeast.dsc, append, megabytes 10
ddl include all
map pdbtgt.east.*, target pdbsrc.west.*;
GGSCI (orcl) 8> add replicat rpeast, integrated ,exttrail ./dirdat/re
Configuration from Secondary System to Primary System (pdbtgt to pdbsrc)
Configure the Extract Process (pdbtgt)
GGSCI (orcl) 135> view param eteast
extract eteast
userid c##oggadmin,password oracle
exttrail ./dirdat/ee
ddl include all
TranLogOptions Excludetag 00
sourcecatalog pdbtgt
table east.*;
GGSCI (orcl) 2> add extract eteast,integrated tranlog, begin now
GGSCI (orcl) 3> add exttrail ./dirdat/ee, extract eteast, megabytes 20
GGSCI (orcl) 6> dblogin userid c##oggadmin, password oracle
GGSCI (orcl as c##oggadmin@disdb/CDB$ROOT) 7> register extract eteast database container(pdbtgt)
GGSCI (orcl as c##oggadmin@disdb/CDB$ROOT) 8> add schematrandata pdbtgt.east
Configure the Data Pump Process (pdbtgt)
GGSCI (orcl) 136> view param pmeast
extract pmeast
passthru
rmthost orcl,mgrport 7809
rmttrail ./dirdat/re
table pdbtgt.east.*;
GGSCI (orcl) 1> add replicat rpwest, integrated ,exttrail ./dirdat/rw
GGSCI (orcl) 4> add extract pmeast, exttrailsource ./dirdat/ee
Configure the Replicat Process (pdbsrc)
GGSCI (orcl as c##oggadmin@disdb/CDB$ROOT) 138> view param rpwest
replicat rpwest
userid c##oggadmin@pdbtgt, password oracle
discardfile rpwest.dsc, append, megabytes 10
ddl include all
map pdbsrc.west.*, target pdbtgt.east.*;
GGSCI (orcl) 5> add rmttrail ./dirdat/re, extract pmeast, megabytes 20
OGG bi-directional replication for Oracle DB的更多相关文章
- Oracle GoldenGate (以下简称ogg)在异种移植os同一种db之间的数据同步。
Oracle GoldenGate (以下简称ogg)在异种移植os同一种db之间的数据同步. ogg要实现的功能: 同步可以细化到单个表,满足特定的where条件rows同步,称号column同步. ...
- goldengate 12c对oracle DB的改进
1. 现在可使用Oracle Universal Installer,即安装时有图形化界面,同时会自动安装java runtime environment,不过个人认为,还是ZIP安装包方便,解压即用 ...
- Oracle GoldenGate从oracle db 到非oracle db的初始化数据同步的方法
非oracle db以 sqlserver为样例说明: 我的思路 A :oracle db 生产 B: oracle db 中间机 C: sqlserver db 目的端 A-> B-> ...
- 在silverlight中通过WCF连接ORACLE DB数据库(转)
转自 http://hi.baidu.com/qianlihanse/item/458aa7c8d93d4e0cac092ff4 这不是我的原创,我也是上网学习的~ How to get data f ...
- Oracle DB 存储增强
• 设置Automatic Storage Management (ASM) 快速镜像 再同步 • 使用ASM 首选镜像读取 • 了解可伸缩性和性能增强 • 设置ASM 磁盘组属性 • 使用SYSA ...
- Oracle DB 使用调度程序自动执行任务
• 使用调度程序来简化管理任务 • 创建作业.程序和调度 • 监视作业执行 • 使用基于时间或基于事件的调度来执行调度程序作业 • 描述窗口.窗口组.作业类和使用者组的用途 • 使用电子邮件通知 • ...
- Oracle DB 管理数据库的空间
• 描述4 KB 扇区磁盘的概念及使用 • 使用可移动表空间 • 描述可移动表空间的概念 数据库存储 数据库存储 数据库包括物理结构和逻辑结构.由于物理结构和逻辑结构是分开的,因此管理数据的物 理存储 ...
- Oracle DB 执行表空间时间点恢复
• 列出在执行表空间时间点恢复(TSPITR) 时会发生的操作 • 阐释TSPITR 使用的术语的定义 • 确定适合将TSPITR 用作解决方案的情况 • 确定时间点恢复的正确目标时间 • 确定不能使 ...
- Oracle DB 备份和恢复的概念
• 确定Oracle DB 中可能发生的故障类型 • 说明优化实例恢复的方法 • 说明检查点.重做日志文件和归档日志文件的重要性 • 配置快速恢复区 • 配置ARCHIVELOG模式 部分工作内容 ...
随机推荐
- H3C 计算子网内可用主机地址数
- 使用Squid做代理服务器,Squid单网卡透明代理配置详解(转)
使用Squid做代理服务器 说到代理服务器,我们最先想到的可能是一些专门的代理服务器网站,某些情况下,通过它们能加快访问互联网的速度.其实,在需要访问外部的局域网中,我们自己就能设置代理,把访问次数较 ...
- 企业级Docker私有仓库Harbor
一.Harbor简介 1.Harbor介绍 Harbor是一个用于存储和分发Docker镜像的企业级Registry服务器,通过添加一些企业必需的功能特性,例如安全.标识和管理等,扩展了开源Docke ...
- 错误 137 (net::ERR_NAME_RESOLUTION_FAILED):未知错误
上午装了一个软件(APMServ 5.2.6) 1.点击启动Apache不成功,mysql却成功了.后来知晓是80端口冲突的问题 2.当时却不知道,就鬼使神差的 点击了 边上的 解决冲突问题 ...
- Integer类入门学习
Integer类 它是一个类,是 int 基本数据类型的封装类. 基本API Integer 类和 int 的区别 Integer 是 int 包装类,int 是八大基本数据类型之一(byte,sho ...
- 从头学pytorch(六):权重衰减
深度学习中常常会存在过拟合现象,比如当训练数据过少时,训练得到的模型很可能在训练集上表现非常好,但是在测试集上表现不好. 应对过拟合,可以通过数据增强,增大训练集数量.我们这里先不介绍数据增强,先从模 ...
- 通过公网连接阿里云redis,rinetd
目前云数据库 Redis 需要通过 ECS 的内网进行连接访问.如果您本地需要通过公网访问云数据库 Redis,可以在 ECS Linux 云服务器中安装 rinetd 进行转发实现. 1.在云服务器 ...
- 深入浅出 Viewport 设计原理
Viewport 是 HTML5 针对移动端开发新增的一个 meta 属性, 它的作用是为同一网页在不同设备的呈现,提供响应式解决方案.这篇文章尝试通过循序渐进的方式,逐层探索 Viewport 的设 ...
- 【题解】ARC101F Robots and Exits(DP转格路+树状数组优化DP)
[题解]ARC101F Robots and Exits(DP转格路+树状数组优化DP) 先删去所有只能进入一个洞的机器人,这对答案没有贡献 考虑一个机器人只能进入两个洞,且真正的限制条件是操作的前缀 ...
- [gitHub实践] 实践记录
[gitHub实践] 实践记录 版权2019.4.19更新 Q1:本地仓库和远程仓库连接提示输入用户名密码 本地仓库和远程仓库连接有两种方式 本地初始化建立一个仓库,远程也建立了一个仓库 本地建立仓库 ...