大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
添加主进程
蓝田ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:18980820575(备注:SSL证书合作)期待与您的合作!
GGSCI (ggate1) 2> edit params mgr
PORT 7809
PURGEOLDEXTRACTS /oracle/ggate/dirdat/mytest_xiuj/ex*, USECHECKPOINTS, MINKEEPDAYS 7
登录到数据库
GGSCI (ggate1) 3> dblogin userid ggate,password ggate
Successfully logged into database.
GGSCI (ggate1) 4> start mgr
2、配置抽了进程
GGSCI (ggate1) 13> add trandata mytest.mytest_xiuj
Logging of supplemental redo data enabled for table MYTEST.MYTEST_XIUJ.
GGSCI (ggate1) 14> add extract exiuj,tranlog,begin now
EXTRACT added.
GGSCI (ggate1) 15> add exttrail /oracle/ggate/dirdat/mytest_xiuj/ex,extract exiuj
EXTTRAIL added.
GGSCI (ggate1) 17> edit params exiuj
extract exiuj
userid ggate,password ggate
exttrail /oracle/ggate/dirdat/mytest_xiuj/ex
table mytest.mytest_xiuj;
3、配置传输进程
GGSCI (ggate1) 23> add extract pxiuj,exttrailsource /oracle/ggate/dirdat/mytest_xiuj/ex
EXTRACT added.
GGSCI (ggate1) 24> add rmttrail /u01/app/ggate/dirdat/mytest_xiuj/re,extract pxiuj
RMTTRAIL added.
GGSCI (ggate1) 25> edit params pxiuj
extract pxiuj
rmthost 192.168.92.191,mgrport 7809
passthru
rmttrail /u01/app/ggate/dirdat/mytest_xiuj/re
table mytest.mytest_xiuj;
4、配置复制进程
GGSCI (ggate2) 3> dblogin userid ggate,password ggate
Successfully logged into database.
GGSCI (ggate2) 4> add checkpointtable chkxiuj
Successfully created checkpoint table CHKxiuj.
GGSCI (ggate2) 5> add replicat rxiuj,exttrail /u01/app/ggate/dirdat/mytest_xiuj/re,checkpointtable chkxiuj
REPLICAT added.
GGSCI (ggate2) 6> edit params rxiuj
replicat rxiuj
setenv ( NLS_LANG = "SIMPLIFIED CHINESE_CHINA.UTF8") --注意,本处不能少,因为目标端与源端字符集不同
assumetargetdefs
HANDLECOLLISIONS
userid ggate,password ggate
discardfile /u01/app/ggate/dirdat/mytest_xiuj/rep1_discard.txt, append, megabytes 10
map mytest.mytest_xiuj, target receiver.mytest_xiuj;
--说明:
在配置goldengate时,要确定源端与目标端的字符集是否相同
通过:
SQL> select userenv('language') from dual;
USERENV('LANGUAGE')
----------------------------------------------------
SIMPLIFIED CHINESE_CHINA.ZHS16GBK
而源端为:"SIMPLIFIED CHINESE_CHINA.UTF8",使目标端与源端相同,否则在目标端,会出现乱码。所以在复制进程中必须加一段设置环境的值:setenv ( NLS_LANG = "SIMPLIFIED CHINESE_CHINA.UTF8")
查询导出字符集
select * from database_properties where property_name = 'NLS_CHARACTERSET'
相关视图及表
nls_database_parameters props$ v$nls_parameters