标签:io os ar 使用 for sp 文件 div on
由于oracle 12c已经是多租户架构,在使用OGG同步的时候,需要考虑下面一些情况
extract示例:
EXTRACT ex1 SETENV (ORACLE_SID=‘oradb‘)
userid c##ogg@oradb, password ogg
EXTTRAIL ./dirdat/ltTABLE pdb1.schema1.table*;
SOURCECATALOG pdb2
TABLE schema2.table*;
TABLE schema3.table*;
SOURCECATALOG pdb3
TABLE schema4.table*;add extract之后,还需要
register extract ex12c database container(pdb1, pdb2, pdb3)
EXTRACT dp1
SETENV (ORACLE_SID=‘oradb‘)userid c##ogg@oradb, password oggRMTHOST orasql-test, MGRPORT 7809
RMTTRAIL ./dirdat/rtTABLE pdb1.schema1.table*;
SOURCECATALOG pdb2
TABLE schema2.table*;
TABLE schema3.table*;
SOURCECATALOG pdb3
TABLE schema4.table*;
replicat示例:
REPLICAT rep1
SETENV (ORACLE_SID=‘condb2‘)
DBOPTIONS INTEGRATEDPARAMS(parallelism 6)
USERID C##ogg@tgt_pdb1, PASSWORD welcome1
ASSUMETARGETDEFS
MAP pdb1.schema1.table*, target schema1.table*;
MAP pdb3.schema4.table*, target schema1.table*;
sourceCatalog
MAP schema2.table*, target schema1.table*;
MAP schema3.table*, target schema1.table*;
goldengate 12c 针对oracle 12c配置的主要变化
标签:io os ar 使用 for sp 文件 div on
原文地址:http://www.cnblogs.com/margiex/p/4046219.html