Oracle GoldenGate 19C双向DMLDDL配置实战
以下是一个简化的示例,展示了如何配置Oracle GoldenGate 19C以捕获和复制双向DML和DDL操作的基本过程:
# 配置GoldenGate DML同步
EXTRACT dml_extract
USERID ggate, PASSWORD ggate
RMTHOST mgr1, MGRPORT 7809
RMTTRAIL ./dirdat/ea
TABLES scott.*;
EXTRACT ddl_extract
USERID ggate, PASSWORD ggate
RMTHOST mgr1, MGRPORT 7809
DDL INCLUDE ALL
DDLOPTS ADDTRANDATA
RMTTRAIL ./dirdat/ea;
# 配置GoldenGate DDL同步
EXTRACT ddl_pump
USERID ggate, PASSWORD ggate
RMTHOST mgr2, MGRPORT 7809
RMTTRAIL ./dirdat/ep
TABLE scott.*;
REPLICAT rep_ddl
USERID ggate, PASSWORD ggate
RMTHOST mgr2, MGRPORT 7809
RMTTRAIL ./dirdat/ep
DDL INCLUDE ALL
MAP scott.*, TARGET scott.*;
# 配置GoldenGate DML同步
EXTRACT dml_pump
USERID ggate, PASSWORD ggate
RMTHOST mgr2, MGRPORT 7809
RMTTRAIL ./dirdat/ep
TABLES scott.*;
REPLICAT rep_dml
USERID ggate, PASSWORD ggate
RMTHOST mgr2, MGRPORT 7809
RMTTRAIL ./dirdat/ep
MAP scott.*, TARGET scott.*;
这个配置示例展示了如何设置两个GoldenGate管理进程(mgr1和mgr2),以及如何在它们之间配置DML和DDL的双向复制。这里的EXTRACT
进程用于捕获数据变化,REPLICAT
进程用于应用这些变化。注意,这只是一个简化的示例,实际配置可能需要考虑更多的细节,例如数据库日志格式、检查点、过滤条件、进程监控等。
评论已关闭