您好,登錄后才能下訂單哦!
1.檢查主鍵,檢查要同步的表時候有主鍵,如果沒有則添加主鍵;
2.添加表的附加日志:
dblogin userid goldengate, password goldengate
add trandata chunqiu.app_sta_flow_list
如果是在備庫上進行抽取,可以連接主庫后添加:
dblogin userid @chunqiu_primary, password goldengate
添加需要抽取的表:
map chunqiu.app_sta_flow_list
3.停止應用進程
3.使用expdp指定scn導出需要的表:
參考:https://blog.51cto.com/1937519/2177360
https://blog.51cto.com/1937519/2177352
或者快速入門:
select sysdate,dbms_flashback.get_system_change_number || '' from dual;
expdp system directory=orabackup dumpfile=chunqiu_%U.dmp parallel=3 logfile=chunqiu.log tables=chunqiu.app_sta_flow_list ,chunqiu.t_sta_flow_detail ,chuqniu.T_BI_CUSTOMER, CLUSTER=no flashback_scn=8089801183405 exclude=trigger
4.impdp導入數據到目標數據庫;
5.編輯應用進程,添加如下映射
如果使用的11g的ogg,需要使用雙引號"transaction","csn",如果使用的是12c的ogg使用單引號:
goldengate12c后的寫法:
map chunqiu.app_sta_flow_list , target chunqiu.app_sta_flow_list , filter (@GETENV ('transaction', 'csn') > 8089801183405 );
goldengate 11g及之前的寫法:
map chunqiu.app_sta_flow_list , target chunqiu.app_sta_flow_list , filter (@GETENV ("transaction", "csn") > 8089801183405 );
出錯參考:
如果在goldengate 12C中寫成goldengate11G之前的格式:
map chunqiu.app_sta_flow_list , target chunqiu.app_sta_flow_list , filter (@GETENV ("transaction", "csn") > 8089801183405 );
則進程會報錯,報錯信息如下:
2018-09-27 17:59:20 INFO OGG-01298 Column function diagnostic message: could not find column "transaction".
2018-09-27 17:59:20 ERROR OGG-00375 Error in FILTER clause.
6.啟動應用進程,等應用進程追平后,關掉就用進程,去掉過濾參數:
map chunqiu.app_sta_flow_list , target chunqiu.app_sta_flow_list ;
啟動應用進程。
最后只想說明一點:
goldengate出錯,不要懷疑人生,也不要懷疑goldengate,好好的生活,出錯就看日志。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。