GoldenGate DDL双向复制

  

  继续上一篇的实验。

  节点说明: 
  dd1(源库)--->>kf2(目标库)
  dd1(目标库)<<---kf2(源库)

 

  在配置反向复制过程中,可暂时把源库和目标库调换位置,配置基本上雷同。
 
  但在官网上有说明要注意的一个地方:
  Do either of the following to  specify the Replicat database us er. All transactions generated
  by this user will be excluded from being captured. This information is available to Extract
  in the transaction record.
  ● Identify the Replicat database user by name with the following parameter statement
  in the Extract parameter file.
  TRANLOGOPTIONS EXCLUDEUSER <user name>
 
  该参数加到主端和备端的extract 参数文件中,否则会出现死循环复制。


 

1. 在dd1上配置全局参数

 

  GGSCI (dd1) 1> view params ./GLOBALS
 
  ggschema ogguser
 
 
  GGSCI (dd1) 2> edit params ./GLOBALS
 
 
  ggschema ogguser
  checkpointtable ogguser.checkpoint
 
 
  GGSCI (dd1) 3> dblogin userid
ogguser@test1,password ogguser         
  Successfully logged into database.
 
  添加checkpoint表:
  GGSCI (dd1) 4> add checkpointtable
  ERROR: Missing checkpoint table specification.
 
  GGSCI (dd1) 5> add checkpointtable ogguser.checkpoint
 
  Successfully created checkpoint table OGGUSER.CHECKPOINT.
 

 

2. 在kf2上确认全局参数,开启附加日志,强制日志,归档

 

  GGSCI (kf2.calvin) 4> view params ./GLOBALS
 
  GGSCHEMA ogguser
  CHECKPOINTTABLE ogguser.checkpoint
 
 
  SQL> alter database add supplemental log data;
 
  Database altered.
 
  SQL> alter system switch logfile;
 
  System altered.
 
  SQL> alter database force logging;
 
  Database altered.
 
  SQL> alter system set recyclebin=off scope=spfile;
   
  System altered.
 
  SQL> select log_mode,supplemental_log_data_min,force_logging from v$database;
 
  LOG_MODE     SUPPLEME FOR
  ------------ -------- ---
  ARCHIVELOG   YES      YES
 

3. 在kf2上配置ddl支持
 
 
SQL> @marker_setup.sql
 
  SQL> @ddl_setup.sql
 
  SQL> @role_setup.sql
 
  SQL> grant GGS_GGSUSER_ROLE to ogguser;
 
  SQL> @ddl_enable.sql
 
  SQL> @?/rdbms/admin/dbmspool.sql
 
  SQL> @ddl_pin.sql ogguser


 

4. 在kf2上添加extract,exttrail,并配置参数

 

  GGSCI (kf2.calvin) 5> dblogin userid ogguser@test2,password ogguser
  Successfully logged into database.
 
  GGSCI (kf2.calvin) 6> add extract ext1,tranlog,begin now
  EXTRACT added.
 
 
  GGSCI (kf2.calvin) 7> add exttrail /data/oracle/ogg11/dirdat/lt,extract ext1
  EXTTRAIL added.
 
  GGSCI (kf2.calvin) 8> edit params ext1
  extract ext1
  userid
ogguser@test2, password ogguser
  tranlogoptions excludeuser ogguser   ##避免死循环复制,同样的,dd1上的extract test1参数也要设置
  rmthost 192.168.130.168, mgrport 7809
  rmttrail /data/oracle/ogg11/dirdat/lt
  ddl include mapped objname stat.*;
  table stat.*;
 
 
  GGSCI (kf2.calvin) 4> info all
 
  Program     Status      Group       Lag           Time Since Chkpt
 
  MANAGER     RUNNING                                          
  EXTRACT     RUNNING     EXT1        00:00:00      00:10:24   
  REPLICAT    RUNNING     TEST2       00:00:00      00:00:07
 

 

5. 在dd1上 添加replicat,extrtrail,并配置参数

 

  GGSCI (dd1) 4> add replicat ext2,exttrail /data/oracle/ogg11/dirdat/lt,checkpointtable ogguser.checkpoint
  REPLICAT added.
 
  GGSCI (dd1) 5> edit params ext2
  replicat ext2
  ASSUMETARGETDEFS
  userid
ogguser@test1,password ogguser
  discardfile /data/oracle/ogg11/dirdat/test1_discard.txt,append, megabytes 10
  DDL INCLUDE MAPPED
  DDLERROR DEFAULT IGNORE RETRYOP
  map stat.*, target stat.*;
 
 
  GGSCI (dd1) 6> start replicat ext2
 
  Sending START request to MANAGER ...
  REPLICAT EXT2 starting
 
 
  GGSCI (dd1) 7> info all
 
  Program     Status      Group       Lag           Time Since Chkpt
 
  MANAGER     RUNNING                                          
  EXTRACT     RUNNING     TEST1       00:00:00      00:00:06   
  REPLICAT    RUNNING     EXT2        00:00:00      00:00:01
  
 

6. 测试数据双向同步

 

  kf2:
  SQL> create table tp_test2(name varchar2(10));
 
  Table created.
 
  SQL> insert into tp_test2 values('calvin'); ##在kf2上插入数据
 
  1 row created.
 
  SQL> commit;
 
  Commit complete.
 
  SQL> select * from tp_test2;
 
  NAME
  ----------
  calvin
 
  1 row selected
 
 
  dd1:
  SQL> select * from tp_test2;
 
  NAME
  ----------
  calvin          ##数据已经同步
 
  SQL> insert into tp_test2 values('fish'); ##在dd1上插入数据
 
  1 row created.
 
  SQL> commit;
 
  Commit complete.
 
  SQL> select * from tp_test2;
 
  NAME
  ----------
  calvin
  fish
 
  kf2:
  SQL> select * from tp_test2;
 
  NAME
  ----------
  calvin
  fish           ##数据已经同步

 

 

 

转载于:https://www.cnblogs.com/xinyuyuanm/archive/2013/04/17/3027181.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/376732.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

转载|pymysql.err.InternalError: Packet sequence number wrong - got 45 expected 0

原文链接&#xff1a;https://www.cnblogs.com/heiao10duan/p/9373237.html 原因&#xff1a; 使用了多线程&#xff0c;多线程共享了同一个数据库连接&#xff0c;但每个execute前没有加上互斥锁 方法&#xff1a; 方法一&#xff1a;每个execute前加上互斥锁 lock.acquire…

JSF入门

1. 简介 JSF技术是Sun公司在2004年发布的用于开发Web应用的框架。当前版本是2.2&#xff0c;由JSR344规范定义。它是Java EE 7推荐的Web标准框架。Mojarra(https://javaserverfaces.java.net/)是Oracle官方采用的JSF的参考实现&#xff0c;其他的参考实现还有Apache基金的MyFac…

nyist 488 素数环

有一个整数n&#xff0c;把从1到n的数字无重复的排列成环&#xff0c;且使每相邻两个数&#xff08;包括首尾&#xff09;的和都为素数&#xff0c;称为素数环。 为了简便起见&#xff0c;我们规定每个素数环都从1开始。例如&#xff0c;下图就是6的一个素数环。 这题在进行判断…

Android System分区大小异常

平台&#xff1a;Freescale &#xff0f; Android 4.2.2 问题描述&#xff1a; 用 df 命令&#xff0c;看到/system分区大小275M。 用 busybox fdisk -l /dev/block/mmcblk0p5&#xff0c;看到 536M。 Freescale的刷机工具是Mfgtool&#xff0c;分区的动作在mksdcard-android.s…

python数据库连接池使用

在转载|pymysql.err.InternalError: Packet sequence number wrong - got 45 expected 0这一篇中&#xff0c;我使用了方法一。接下来试试方法三&#xff0c;方法三和方法二其实意义差不多&#xff0c;但是对于数据库的连接并不是交由程序员管理而是交由连接池管理了&#xff0…

.Net入门-部署问题

学习一门新的语言难免会遇到各种各样的问题&#xff0c;总结一下。 测试环境&#xff1a;windows2008serverIIS7 开发环境: vs2010 问题1&#xff1a;"Unrecognized attribute targetFramework. Note that attribute names are case-sensitive. " 分析&#xff1a; 开…

pymysql.err.OperationalError: (1203, “User root already has more than ‘max_user_connections‘ active

max_connections 是指MySQL服务器的最大连接数。即所有用户最大连接数的和。 max_user_connections 是指MySQL中单个用户的最大连接数。 这里说明当前用户的连接数大于了单个用户的最大连接数&#xff0c;需要扩大连接数&#xff1a; mysql> show variables like %connect%…

北京行——JSP入门与Servlet精通

Servlet技术 用来动态生成 网页数据资源Servlet生成HTML 页面数据时&#xff0c;所有内容都是通过 response.getWriter response.getOutputStream 向浏览器输出的 <html> <head> </head> <body> Hello </body></html> 用Servlet 输出流打印…

json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

可以参考一波&#xff1a;https://stackoverflow.com/questions/16573332/jsondecodeerror-expecting-value-line-1-column-1-char-0 1、json格式不对引起的错误 加上if json_rep.content:判空操作 json_rep requests.post(url monitor_url, headers monitor_header,json …

WINDOWS系统Eclipse+NDK+Android + OpenCv

WINDOWS系统EclipseNDKAndroid OpenCv 参考文档博客 1 NDK环境搭建 http://jingyan.baidu.com/article/5d6edee22d908799eadeec9f.html 2 官方文档 Android.mk与Application.mk如何编写&#xff0c;OpenCV库如何调用 http://docs.opencv.org/trunk/doc/tutorials/introduction…

ural 1910. Titan Ruins: Hidden Entrance(Titan Ruins系列题目)

这是Titan Ruins系列第一道题&#xff0c;以后慢慢更新。 赤裸裸滴阅读理解题&#xff0c;大意就是找到三个连在一起的数&#xff0c;使其之和最大&#xff0c;输出的第一个数是这三个数的和&#xff0c;第二个数是中间那个数所在的位置。水题一道&#xff0c;很简单。 1 #incl…

python OSError: [Errno 24] Too many open files | HTTPConnectionPool(host=‘‘, port=80): Max retries e

对于问题&#xff1a;python OSError: [Errno 24] Too many open files 原因:超出了进程同一时间最多可开启的文件数. 解决方案P: 使用ulimit -n查看进程同一时间最多可开启的文件数 mac默认是256&#xff0c;linux是1024 修改 sudo vim /etc/security/limits.conf 这个文件的最…

Android 之视频监控

Android 视频监控已经有示例了&#xff0c;如http://www.open-open.com/lib/view/open1346400423609.html完全可以实现简单的监控功能。但是&#xff0c;如果想要在手机上监控另外一个手机就需要做一些改动了。 其中&#xff0c;手机A实现的功能和上文中的一样&#xff0c;主要…

Max retries exceeded with url 解决方案

目录问题解决方案keep alive 与close使用场景问题解决方案 在上一篇问题解决中&#xff1a;python OSError: [Errno 24] Too many open files | HTTPConnectionPool(host‘‘, port80): Max retries e 有提到修改本地进程最大文件数来避免Max retries exceeded with url 报错&…

正确理解JavaScript

过去几年我注意到技术圈一个很奇怪的现象&#xff0c;有太多程序员将那些他们只是有过非常浅显的了解&#xff0c; 但其实根本就不懂的技术写到他们的简历中&#xff0c;这个现象几乎每种语言都有&#xff0c;但这其中最严重的就要数javascript了。 你不知道你不懂 出现这种状况…

医疗机构远程视频监控集中管理,贝锐蒲公英提供一站式解决方案

上海某企业专业致力于医疗软件、家居智能化研发、设计、销售、集成及实施&#xff0c;企业主营业务之一为医疗软件&#xff0c;涉及PACS/RIS/WEB/HIS、示教系统等方面的医院信息化建设。 在实际应用、部署过程中&#xff0c;需要实现各地区分院与总院间的数据库互相访问、视频数…

py脚本:linux系统下定时清理文件

linux清空文件内容的三种方法&#xff1a; 1.使用vi/vim命令打开文件后&#xff0c;输入"%d"清空&#xff0c;后保存即可。但当文件内容较大时&#xff0c;处理较慢&#xff0c;命令如下&#xff1a; vim file_name :%d :wq2.使用cat命令情况&#xff0c;命令如下&a…

Process类:启动和停止本地系统进程

Process.Start 方法 (String, String) 通过指定应用程序的名称和一组命令行参数来启动一个进程资源。&#xff08;并将该资源与新的 Process 组件相关联&#xff09; 如果没有启动资源&#xff0c;则返回null Process.Start("d:\\0.jpg"); Process.StartInfo 属性 获…

NYOJ2括号配对问题

括号配对是最基本的栈的问题&#xff0c;它是栈入门的经典题目&#xff0c;思路是&#xff0c;如果是左括号直接进栈&#xff0c;如果是右括号&#xff0c;这时就要比较栈顶的元素与他是否匹配&#xff0c;如果匹配则出栈&#xff0c;否则进栈&#xff0c;下面是代码的实现&…

SVC编码简单了解

基本概念 可伸缩视频编码 SVC&#xff08;Scalable Video Coding&#xff09; 作为 H.264 标准的一个扩展,可用于生成不同帧率、分辨率和质量等可分层的视频流。 基本层编码最低层的时域、空域和质量流&#xff1b; 增强层以基本层作为起始点&#xff0c;对附加信息进行补充&a…