源端数据库配置
[root@king01 ~]# su - oracle
[oracle@king01 ~]$ sqlplus / as sysdbaSQL> create tablespace goldengate datafile '/home/oracle/oradata/king/ogg01.dbf' size 1024M;
Tablespace created.SQL> create user ggs identified by ggs default tablespace goldengate;
User created.SQL> grant dba to ggs;
Grant succeeded.SQL> select log_mode from v$database;
LOG_MODE
------------------------------------
ARCHIVELOGSQL> alter database force logging;
Database altered.SQL> select force_logging from v$database;
FORCE_LOGGING
------------------------------
YESSQL> alter database add supplemental log data;
Database altered.SQL> col supplemental_log_data_min for a30
SQL> select supplemental_log_data_min from v$database;
SUPPLEMENTAL_LOG_DATA_MIN
------------------------------
YESSQL> alter system set enable_goldengate_replication=true;SQL> alter system archive log current;源端安装OGG
[oracle@king01 ~]$ vi .bash_profile
export OGG_HOME=/home/ogg
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
export PATH=$OGG_HOME:$PATH
[oracle@king01 ~]$ source .bash_profile[oracle@king01 ~]$ mkdir -p /home/ogg
[oracle@king01 ~]$ unzip fbo_ggs_Linux_x64_shiphome.zip
[oracle@king01 ~]$ cd fbo_ggs_Linux_x64_shiphome/Disk1
[oracle@king01 Disk1]$ ./runInstaller[oracle@king01 ~]$ cd /home/ogg
[oracle@king01 ogg]$ ./ggsci
Oracle GoldenGate Command Interpreter for Oracle
Version 12.2.0.1.1 OGGCORE_12.2.0.1.0_PLATFORMS_151211.1401_FBO
Linux, x64, 64bit (optimized), Oracle 11g on Dec 12 2015 00:54:38
Operating system character set identified as UTF-8.
Copyright (C) 1995, 2015, Oracle and/or its affiliates. All rights reserved.GGSCI (king01) 1> create subdirs
Creating subdirectories under current directory /home/ogg
Parameter files                /home/ogg/dirprm: created
Report files                   /home/ogg/dirrpt: created
Checkpoint files               /home/ogg/dirchk: created
Process status files           /home/ogg/dirpcs: created
SQL script files               /home/ogg/dirsql: created
Database definitions files     /home/ogg/dirdef: created
Extract data files             /home/ogg/dirdat: created
Temporary files                /home/ogg/dirtmp: created
Credential store files         /home/ogg/dircrd: created
Masterkey wallet files         /home/ogg/dirwlt: created
Dump files                     /home/ogg/dirdmp: created源端MANAGER进程组
GGSCI (king01) 2> edit params mgr
PORT 7839
DYNAMICPORTLIST 7840-7939
AUTORESTART EXTRACT *,RETRIES 5,WAITMINUTES 3
PURGEOLDEXTRACTS ./dirdat/*,USECHECKPOINTS, MINKEEPDAYS 7
LAGREPORTHOURS 1
LAGINFOMINUTES 3
LAGCRITICALMINUTES 10GGSCI (king01) 3> start mgr
Manager started.GGSCI (king01) 4> info mgr
Manager is running (IP port king01.7839, Process ID 3243).源端EXTRACT进程组
GGSCI (king01) 5> dblogin userid ggs,password ggs
Successfully logged into database.GGSCI (king01 as ggs@king) 6> add trandata soe.*GGSCI (king01 as ggs@king) 7> add extract ext_soe, tranlog, begin now
EXTRACT added.GGSCI (king01 as ggs@king) 8> add exttrail ./dirdat/st,extract ext_soe,megabytes 100
EXTTRAIL added.GGSCI (king01 as ggs@king) 9> edit params ext_soe
EXTRACT ext_soe
DYNAMICRESOLUTION
USERID ggs,PASSWORD ggs
EXTTRAIL ./dirdat/st
TABLEEXCLUDE SOE.ORDERENTRY_METADATA
TABLE SOE.*;GGSCI (king01 as ggs@king) 10> start ext_soe
Sending START request to MANAGER ...
EXTRACT EXT_SOE startingGGSCI (king01 as ggs@king) 11> info ext_soeEXTRACT    EXT_SOE   Last Started 2017-08-30 13:47   Status RUNNING
Checkpoint Lag       00:00:00 (updated 00:00:07 ago)
Process ID           4234
Log Read Checkpoint  Oracle Redo Logs2017-08-30 16:58:33  Seqno 59, RBA 211786752SCN 0.2361582 (2361582)源端PUMP进程组
GGSCI (king01 as ggs@king) 12> add extract pmp_soe, exttrailsource ./dirdat/st
EXTRACT added.GGSCI (king01 as ggs@king) 13> add rmttrail ./dirdat/rt,EXTRACT pmp_soe,megabytes 100
RMTTRAIL added.GGSCI (king01 as ggs@king) 14> edit params pmp_soe
EXTRACT pmp_soe
PASSTHRU
RMTHOST 192.168.1.202, MGRPORT 7839, COMPRESS
RMTTRAIL ./dirdat/rt
TABLE SOE.*;GGSCI (king01 as ggs@king) 15> start pmp_soe
Sending START request to MANAGER ...
EXTRACT PMP_SOE startingGGSCI (king01 as ggs@king) 16>  info pmp_soe
EXTRACT    PMP_SOE   Last Started 2017-08-30 15:22   Status RUNNING
Checkpoint Lag       00:00:00 (updated 00:00:08 ago)
Process ID           4844
Log Read Checkpoint  File ./dirdat/st0000000002017-08-30 16:20:08.000000  RBA 47753236GGSCI (king01 as ggs@king) 17> info allProgram     Status      Group       Lag at Chkpt  Time Since ChkptMANAGER     RUNNING
EXTRACT     RUNNING     EXT_SOE     00:00:00      00:00:01
EXTRACT     RUNNING     PMP_SOE     00:00:00      00:00:06源端备份数据库
[oracle@king01 ~]$ mkdir /home/oracle/backup
[oracle@king01 ~]$ rman target /
RMAN> CONFIGURE CONTROLFILE AUTOBACKUP ON;
RMAN> CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/home/oracle/backup/%F';
RMAN> RUN {
BACKUP INCREMENTAL LEVEL=0 TAG 'FULL_BACKUP' DATABASE
FORMAT '/home/oracle/backup//soe_full_incr_%s_%p_%T'
PLUS ARCHIVELOG
FORMAT '/home/oracle/backup/soe_arch_%s_%p_%T' delete all input;
DELETE NOPROMPT OBSOLETE;
CROSSCHECK BACKUP;
DELETE NOPROMPT EXPIRED BACKUP;
}[oracle@king01 ~]$ sqlplus / as sysdba
SQL> select to_char(current_scn) from v$database;
TO_CHAR(CURRENT_SCN)
----------------------------------------
1032191SQL> alter system archive log current ;
System altered.
SQL> alter system archive log current ;
System altered.
SQL> alter system archive log current ;
System altered.[oracle@king01 ~]$ rman target /
RMAN> backup archivelog all FORMAT '/home/oracle/backup/soe_arch_%s_%p_%T';
[oracle@king01 ~]$ cd backup
[oracle@king01 backup]$  scp * 192.168.1.202:/home/oracle/backup/
[oracle@king01 ~]$ cd $ORACLE_HOME/dbs
[oracle@king01 dbs]$ scp orapwking 192.168.1.202:/home/database/11.2.0.4/product/dbs
目标端恢复数据库
[oracle@king02 ~]$ mkdir -p /home/oracle/admin/king/adump
[oracle@king02 ~]$ mkdir -p /home/oracle/oradata/king
[oracle@king02 ~]$ mkdir -p /home/oracle/fast_recovery_area/king
[oracle@king02 ~]$ mkdir -p /home/oracle/archive
[oracle@king02 ~]$ rman target /
RMAN> startup nomount
startup failed: ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file '/home/oracle/product/11.2.0/db_1/dbs/initking.ora'
starting Oracle instance without parameter file for retrieval of spfile
Oracle instance started
Total System Global Area    1068937216 bytes
Fixed Size                     2260088 bytes
Variable Size                281019272 bytes
Database Buffers             780140544 bytes
Redo Buffers                   5517312 bytesRMAN> set DBID=1085678857
RMAN> run{set CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/home/oracle/backup/%F';restore spfile from autobackup;}RMAN> shutdown immediate
RMAN> startup nomount
Total System Global Area    1068937216 bytes
Fixed Size                     2260088 bytes
Variable Size                322962312 bytes
Database Buffers             687865856 bytes
Redo Buffers                  55848960 bytesRMAN> set DBID=1085678857
executing command: SET DBID
RMAN> run{
2> set CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/home/oracle/backup/%F';
3> restore controlfile from autobackup;
4> }RMAN> alter database mount;RMAN> run{set until scn 1032191;restore database;recover database;}RMAN> alter database open resetlogs;目标端数据库设置
SQL> select 'alter table '||owner||'.'||table_name||' disable constraint '||constraint_name||';'from dba_constraintswhere constraint_type in ('R') andowner in('SOE')order by status,owner;
'ALTERTABLE'||OWNER||'.'||TABLE_NAME||'DISABLECONSTRAINT'||CONSTRAINT_NAME||';'
--------------------------------------------------------------------------------
alter table SOE.ADDRESSES disable constraint ADD_CUST_FK;
alter table SOE.ORDERS disable constraint ORDERS_CUSTOMER_ID_FK;
alter table SOE.ORDER_ITEMS disable constraint ORDER_ITEMS_PRODUCT_ID_FK;
alter table SOE.INVENTORIES disable constraint INVENTORIES_PRODUCT_ID_FK;
alter table SOE.ORDER_ITEMS disable constraint ORDER_ITEMS_ORDER_ID_FK;
alter table SOE.INVENTORIES disable constraint INVENTORIES_WAREHOUSES_FK;
6 rows selected.SQL> select 'alter trigger '||owner||'.'||trigger_name||' disable;'from dba_triggerswhere owner in('SOE')order by status,owner;
no rows selectedSQL>  alter system set job_queue_processes=0 scope=both;
System altered.SQL> drop user ggs cascade;
User dropped.SQL> create user ggt identified by ggt default tablespace goldengate;
User created.SQL> grant dba to ggt;
Grant succeeded.目标端安装OGG
[oracle@king02 ~]$ vi .bash_profile
export OGG_HOME=/home/ogg
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
export PATH=$OGG_HOME:$PATH
[oracle@king02 ~]$ source .bash_profile[oracle@king02 ~]$ mkdir -p /home/ogg
[oracle@king02 ~]$ unzip fbo_ggs_Linux_x64_shiphome.zip
[oracle@king02 ~]$ cd fbo_ggs_Linux_x64_shiphome/Disk1
[oracle@king02 Disk1]$ ./runInstaller [oracle@king02 Disk1]$ cd /home/ogg
[oracle@king02 ogg]$ ./ggsci
GGSCI (king02) 1> create subdirsCreating subdirectories under current directory /home/oggParameter files                /home/ogg/dirprm: created
Report files                   /home/ogg/dirrpt: created
Checkpoint files               /home/ogg/dirchk: created
Process status files           /home/ogg/dirpcs: created
SQL script files               /home/ogg/dirsql: created
Database definitions files     /home/ogg/dirdef: created
Extract data files             /home/ogg/dirdat: created
Temporary files                /home/ogg/dirtmp: created
Credential store files         /home/ogg/dircrd: created
Masterkey wallet files         /home/ogg/dirwlt: created
Dump files                     /home/ogg/dirdmp: created目标端MANAGER进程组
GGSCI (king02) 2> edit params mgr
PORT 7839
DYNAMICPORTLIST 7840-7939
AUTORESTART EXTRACT *,RETRIES 5,WAITMINUTES 3
PURGEOLDEXTRACTS ./dirdat/*,USECHECKPOINTS, MINKEEPDAYS 7
LAGREPORTHOURS 1
LAGINFOMINUTES 3
LAGCRITICALMINUTES 10GGSCI (king02) 3> start mgr
Manager started.GGSCI (king02) 4> info mgr
Manager is running (IP port king02.7839, Process ID 13650).目标端REPLICAT进程组
GGSCI (king02) 5> edit params ./GLOBALS
checkpointtable ggt.chkptGGSCI (king02) 6> dblogin userid ggt,password ggt
Successfully logged into database.GGSCI (king02 as ggt@king) 7> add checkpointtableNo checkpoint table specified. Using GLOBALS specification (ggt.chkpt)...Successfully created checkpoint table ggt.chkpt.GGSCI (king02 as ggt@king) 8> add replicat rep_soe,exttrail ./dirdat/rt
REPLICAT added.GGSCI (king02 as ggt@king) 9> edit param rep_soe
REPLICAT rep_soe
USERID ggt, PASSWORD ggt
REPERROR DEFAULT, ABEND
DISCARDFILE ./dirrpt/rep_soe.dsc,APPEND,MEGABYTES 1024
ASSUMETARGETDEFS
ALLOWNOOPUPDATES
MAP SOE.*, TARGET SOE.*;GGSCI (king02 as ggt@king) 10> start replicat rep_soe, aftercsn 1032191Sending START request to MANAGER ...
REPLICAT REP_SOE startingGGSCI (king02 as ggt@king) 11> info rep_soeREPLICAT   REP_SOE   Last Started 2018-08-04 14:40   Status RUNNING
Checkpoint Lag       00:00:00 (updated 00:00:00 ago)
Process ID           13902
Log Read Checkpoint  File ./dirdat/rt0000000002018-08-04 14:43:08.676383  RBA 42207GGSCI (king02 as ggt@king) 12> info allProgram     Status      Group       Lag at Chkpt  Time Since ChkptMANAGER     RUNNING
REPLICAT    RUNNING     REP_SOE     00:00:00      00:00:04
OGG DDL复制
[oracle@king01 ogg]$ ./ggsci
GGSCI (king01) 1> edit params ./GLOBALS
GGSCHEMA ggs[oracle@king01 ogg]$  sqlplus / as sysdba
SQL> show parameter recyclebin
NAME                                 TYPE                              VALUE
------------------------------------ --------------------------------- ------------------------------
recyclebin                           string                            onSQL> alter system set recyclebin=off deferred;
System altered.SQL> purge recyclebin;
Recyclebin purged.SQL> @marker_setup.sql
Marker setup script
You will be prompted for the name of a schema for the Oracle GoldenGate database objects.
NOTE: The schema must be created prior to running this script.
NOTE: Stop all DDL replication before starting this installation.
Enter Oracle GoldenGate schema name:ggs
Marker setup table script complete, running verification script...
Please enter the name of a schema for the GoldenGate database objects:
Setting schema name to GGS
MARKER TABLE
---------------------------------------------------------------------------------------------
OK
MARKER SEQUENCE
---------------------------------------------------------------------------------------------
OK
Script complete.SQL> @ddl_setup.sql
Oracle GoldenGate DDL Replication setup script
Verifying that current user has privileges to install DDL Replication...
You will be prompted for the name of a schema for the Oracle GoldenGate database objects.
NOTE: For an Oracle 10g source, the system recycle bin must be disabled. For Oracle 11g and later, it can
be enabled.
NOTE: The schema must be created prior to running this script.
NOTE: Stop all DDL replication before starting this installation.
Enter Oracle GoldenGate schema name:ggs
Working, please wait ...
Spooling to file ddl_setup_spool.txt
Checking for sessions that are holding locks on Oracle Golden Gate metadata tables ...
Check complete.
Using GGS as a Oracle GoldenGate schema name.
Working, please wait ...
DDL replication setup script complete, running verification script...
Please enter the name of a schema for the GoldenGate database objects:
Setting schema name to GGS
CLEAR_TRACE STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
CREATE_TRACE STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
TRACE_PUT_LINE STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
INITIAL_SETUP STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
DDLVERSIONSPECIFIC PACKAGE STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
DDLREPLICATION PACKAGE STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
DDLREPLICATION PACKAGE BODY STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
DDL IGNORE TABLE
---------------------------------------------------------------------------------------------------------
OK
DDL IGNORE LOG TABLE
---------------------------------------------------------------------------------------------------------
OK
DDLAUX  PACKAGE STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
DDLAUX PACKAGE BODY STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
SYS.DDLCTXINFO  PACKAGE STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
SYS.DDLCTXINFO  PACKAGE BODY STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
DDL HISTORY TABLE
---------------------------------------------------------------------------------------------------------
OK
DDL HISTORY TABLE(1)
---------------------------------------------------------------------------------------------------------
OK
DDL DUMP TABLES
---------------------------------------------------------------------------------------------------------
OK
DDL DUMP COLUMNS
---------------------------------------------------------------------------------------------------------
OK
DDL DUMP LOG GROUPS
---------------------------------------------------------------------------------------------------------
OK
DDL DUMP PARTITIONS
---------------------------------------------------------------------------------------------------------
OK
DDL DUMP PRIMARY KEYS
---------------------------------------------------------------------------------------------------------
OK
DDL SEQUENCE
---------------------------------------------------------------------------------------------------------
OK
GGS_TEMP_COLS
---------------------------------------------------------------------------------------------------------
OK
GGS_TEMP_UK
---------------------------------------------------------------------------------------------------------
OK
DDL TRIGGER CODE STATUS:
Line/pos
-----------------------------------------------------------------------------------------------------------
-------------
Error
-----------------------------------------------------------------
No errors
No errors
DDL TRIGGER INSTALL STATUS
---------------------------------------------------------------------------------------------------------
OK
DDL TRIGGER RUNNING STATUS
-----------------------------------------------------------------------------------------------------------
-------------
ENABLED
STAYMETADATA IN TRIGGER
-----------------------------------------------------------------------------------------------------------
-------------
OFF
DDL TRIGGER SQL TRACING
-----------------------------------------------------------------------------------------------------------
-------------
0
DDL TRIGGER TRACE LEVEL
-----------------------------------------------------------------------------------------------------------
-------------
NONE
LOCATION OF DDL TRACE FILE
-----------------------------------------------------------------------------------------------------------
-------------
/u01/app/oracle/diag/rdbms/king/king/trace/ggs_ddl_trace.log
Analyzing installation status...
VERSION OF DDL REPLICATION
-----------------------------------------------------------------------------------------------------------
-------------
OGGCORE_12.2.0.1.0_PLATFORMS_151211.1401
STATUS OF DDL REPLICATION
-----------------------------------------------------------------------------------------------------------
-------------
SUCCESSFUL installation of DDL Replication software components
Script complete.SQL> @role_setup.sql
GGS Role setup script
This script will drop and recreate the role GGS_GGSUSER_ROLE
To use a different role name, quit this script and then edit the params.sql script to change the gg_role
parameter to the preferred name. (Do not run the script.)
You will be prompted for the name of a schema for the GoldenGate database objects.
NOTE: The schema must be created prior to running this script.
NOTE: Stop all DDL replication before starting this installation.
Enter GoldenGate schema name:ggs
Wrote file role_setup_set.txt
PL/SQL procedure successfully completed.
Role setup script complete
Grant this role to each user assigned to the Extract, GGSCI, and Manager processes, by using the following
SQL command:
GRANT GGS_GGSUSER_ROLE TO <loggedUser>
where <loggedUser> is the user assigned to the GoldenGate processes.SQL> grant ggs_ggsuser_role to ggs;
Grant succeeded.SQL> @ddl_enable.sql
Trigger altered.SQL> @marker_status.sql
Please enter the name of a schema for the GoldenGate database objects:
ggs
Setting schema name to GGS
MARKER TABLE
---------------------------------------------------------------------------------------------
OK
MARKER SEQUENCE
---------------------------------------------------------------------------------------------
OK[oracle@king01 ogg]$ ./ggsci
GGSCI (king01) 1> edit params ext_soe
EXTRACT ext_soe
USERID ggs,PASSWORD ggs
EXTTRAIL ./dirdat/st
DDL INCLUDE ALL
DDLOPTIONS ADDTRANDATA
DDLOPTIONS REPORT
TABLEEXCLUDE SOE.ORDERENTRY_METADATA
TABLE SOE.*;[oracle@king02 ogg]$ ./ggsci
GGSCI (king02) 1>  edit params rep_soe
REPLICAT rep_soe
USERID ggt, PASSWORD ggt
DISCARDFILE ./dirrpt/rep_soe.dsc,APPEND,MEGABYTES 1024
ASSUMETARGETDEFS
ALLOWNOOPUPDATES
DDL INCLUDE MAPPED
DDLERROR DEFAULT ABEND
DDLOPTIONS REPORT
MAP SOE.*, TARGET SOE.*;
源端OGG监控
GGSCI (king01) 1> info ext_soeEXTRACT    EXT_SOE   Last Started 2018-08-11 14:16   Status RUNNING
Checkpoint Lag       00:00:00 (updated 00:00:09 ago)
Process ID           8491
Log Read Checkpoint  Oracle Redo Logs2018-08-11 14:50:10  Seqno 38, RBA 25028608SCN 0.1085945 (1085945)GGSCI (king01) 2> info pmp_soeEXTRACT    PMP_SOE   Last Started 2018-08-11 14:16   Status RUNNING
Checkpoint Lag       00:00:00 (updated 00:00:01 ago)
Process ID           8504
Log Read Checkpoint  File ./dirdat/st0000000022018-08-11 14:23:46.000000  RBA 2188582GGSCI (king01) 3> dblogin userid ggs,password ggs
Successfully logged into database.GGSCI (king01 as ggs@king) 4> lag ext_soeSending GETLAG request to EXTRACT EXT_SOE ...
Last record lag 2 seconds.
At EOF, no more records to process.GGSCI (king01 as ggs@king) 5> stats ext_soe,daily,table soe.ordersSending STATS request to EXTRACT EXT_SOE ...Start of Statistics at 2018-08-11 14:49:34.DDL replication statistics (for all trails):*** Total statistics since extract started     ***Operations                                        11.00Mapped operations                                  2.00Unmapped operations                                7.00Other operations                                   2.00Excluded operations                                0.00Output to ./dirdat/st:Extracting from SOE.ORDERS to SOE.ORDERS:*** Daily statistics since 2018-08-11 14:16:36 ***Total inserts                                    851.00Total updates                                    971.00Total deletes                                      0.00Total discards                                     0.00Total operations                                1822.00End of Statistics.目标端OGG监控
GGSCI (king02) 1> info rep_soeREPLICAT   REP_SOE   Last Started 2018-08-11 14:21   Status RUNNING
Checkpoint Lag       00:00:00 (updated 00:00:06 ago)
Process ID           1890
Log Read Checkpoint  File ./dirdat/rt0000000042018-08-11 14:23:46.590809  RBA 2188623GGSCI (king02) 2> dblogin userid ggt,password ggt
Successfully logged into database.GGSCI (king02 as ggt@king) 3> lag rep_soeSending GETLAG request to REPLICAT REP_SOE ...
Last record lag 6 seconds.GGSCI (king02 as ggt@king) 4> stats rep_soe,daily,table soe.orders                                                            Sending STATS request to REPLICAT REP_SOE ...Start of Statistics at 2018-08-11 14:50:49.DDL replication statistics:*** Total statistics since replicat started     ***Operations                                        11.00Mapped operations                                  1.00Unmapped operations                                8.00Other operations                                   2.00Excluded operations                               10.00Errors                                             0.00Retried errors                                     0.00Discarded errors                                   0.00Ignored errors                                     0.00Replicating from SOE.ORDERS to SOE.ORDERS:*** Daily statistics since 2018-08-11 14:21:50 ***Total inserts                                    851.00Total updates                                    971.00Total deletes                                      0.00Total discards                                     0.00Total operations                                1822.00End of Statistics.

转载于:https://blog.51cto.com/13598811/2154700

【Oracle Database】Oracle GoldenGate (single-single)相关推荐

  1. oracle rac服务供应商,【Oracle Database】Oracle RAC(八):服务资源管理

    [Oracle Database]Oracle RAC(八):服务资源管理 发布时间:2020-07-24 15:02:47 来源:51CTO 阅读:210 作者:NOGYMS Service资源 每 ...

  2. oracle+srvctl+crsctl,【Oracle Database】Oracle RAC(七):crsctl srvctl

    [Oracle Database]Oracle RAC(七):crsctl & srvctl 发布时间:2020-08-10 07:50:06 来源:51CTO 阅读:312 作者:NOGYM ...

  3. 【深度学习】孪生网络(Siamese Network)的模式和训练过程

    [深度学习]孪生网络(Siamese Network)的模式和训练过程 文章目录 1 概述 2 Siamese network 孪生神经网络 3 孪生神经网络和伪孪生神经网络分别适用于什么场景呢? 4 ...

  4. 【Vue2.0】—mixin混入 (十五)

    [Vue2.0]-mixin混入 (十五) 局部混入 <template><div><h2 @click="showName">学生姓名:{{n ...

  5. 【Vue2.0】—ref属性(十四)

    [Vue2.0]-ref属性(十四)

  6. 【DP练习】月饼盒(提高版)(vijos1255)

    [DP练习]月饼盒(提高版) 测试链接:https://vijos.org/p/1255 [题目背景]:中秋节了,CCC老师决定去送礼.  [问题描述]:一个被分为 n*m 个格子的月饼盒,第 i 行 ...

  7. 【无人机学习】Mission Planner(pc端)和QGroundControl(android端)

    █ [无人机学习]Mission Planner(pc端)和QGroundControl(android端) █ 系列文章目录 提示:这里是收集了无人机的相关文章 [无人机学习]无人机基础知识 [无人 ...

  8. 【面试篇】前端点滴(css/css3)

    [面试篇]前端点滴(CSS/CSS3)---倾尽所有 面试小问答 css基础 css盒模型 css选择器 BFC css(float) css(position/z-index) css(displa ...

  9. 【学者风采】Cong Wang(王聪)

    [学者风采]Cong Wang(王聪),香港城市大学计算机科学系教授.博士生导师.目前的研究兴趣包括:云计算背景下的外包数据与计算安全.区块链与去中心化应用.新兴互联网架构中的网络安全.多媒体安全以及 ...

  10. 【孙伟】网页设计(切图)视频教程-孙伟-专题视频课程

    [孙伟]网页设计(切图)视频教程-62人已学习 课程介绍         视频教程为网页中需求部分解析与切图等内容讲解,根据页面设计内容全面讲解切图标准与方式,以及与前端人员的配合过程中的工作对接等问 ...

最新文章

  1. 计算机应用基础统考操作,全国统考计算机应用基础操作题
  2. 创建可微物理引擎Nimble,开源SOTA人体骨骼模型,斯坦福腿疾博士生用AI「助跑」人生...
  3. 每天学一点儿shell:Shell的常用语法规则
  4. DevExpress的TreeList实现显示本地文件目录并自定义右键实现删除与重命名文件
  5. android adb 联系人,使用adb命令向Android模拟器中导入通讯录联系人的方法
  6. 阿里员工 1 天有 26 个小时,怎么回事?
  7. sql left join用法_一张图看懂 SQL 的各种 join 用法!
  8. antd option宽度自适应_WordPress文章中添加自适应宽度的表格——墨涩网
  9. Dubbo源码分析系列-深入Dubbo SPI机制
  10. spring-boot 整合redis作为数据缓存
  11. python 将字符串转换为字典
  12. 关于maven各种报错
  13. Windows 有哪些冷门但是非常值得推荐的软件?
  14. 【AI大咖】扒一下低调的Yoshua Bengio大神
  15. 备案指的是域名还是服务器?
  16. 有没有和作业帮一样的计算机,学霸君、学习宝和作业帮哪个好【对比】
  17. Target host is not specified解决方案
  18. mysql migration toolkit 使用_MySQL Migration Toolkit的使用
  19. 2023年股票开户哪家手续费最低?融资融券利息率最低多少?万1融5!支持量化交易的券商
  20. oracle 拼音首字母查询,ORACLE 中文列 按拼音首字母查询 升级版

热门文章

  1. gitgrab.sh
  2. 一些常用的正则表达式收集
  3. linux创建删除用户和用户组
  4. Asp.Net MVC4入门指南(8):给数据模型添加校验器
  5. ARM裸机开发(三)SDRAM编程
  6. ISA 发布内网 NLB
  7. sql数据库自动备份
  8. Linux O(n)调度器
  9. Wireshark实战分析之ARP协议(一)
  10. linux内核分析与应用 -- 进程与线程(下)