使用ogg 從oracle 同步mysql遇到問題記錄

darren__chan發表於2018-09-17


ORACLE    同步mysql遇到問題:


2018-08-27 10:59:54  WARNING OGG-01004  Aborted grouped transaction on DESIGNXXxx, Database error 1105 ([SQL error 1105]Parameter of prepared statement which is set through mysql_send

_long_data() is longer than 'max_allowed_packet' bytes

可以修改mysql伺服器的配置(my.ini 或者 my.cnf 檔案)引數:max_allowed_packet = 500M 來解決,缺陷是該方法需要重啟mysql伺服器。




2018-08-27 18:16:03  WARNING OGG-01154  SQL error 1364 mapping RAPANORAMAGEOM to PMC.RAPANORAMAGEOM [SQL error 1364]Field 'Geomtrycolor' doesn't have a default value.


在資料庫中對報錯的欄位設定預設值, 整數:0 ,字串:設為NULL,


找到對應的表--->設計表--->預設選擇框(設定預設值)


--Key column Sex (20) is missing from update on table GUEST'

alter table GUEST add primary key(Guestid);



2018-08-28 09:53:45  ERROR   OGG-00768  DYNSQL: Preparing SQL statement (ID = 0) failed. SQL error (1064). You have an error in your SQL syntax; check the manual that corresponds to your MySQ

L server version for the right syntax to use near '%T SET %S WHERE %W' at line 1.


解決方法:

檢查兩邊資料庫的表欄位是否一致,可能是缺少欄位


遮蔽保留字表

xxx.DBA_TABLES_TMP




2018-09-14 16:46:37  WARNING OGG-01154  SQL error 1364 mapping USERLIMITIxxxxx to SMS.USERLIMITINFODETAIL [SQL error 1364]Field 'Userlimitid' doesn't have a default value.


去除  sql_mode 中STRICT_TRANS_TABLES,


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29863023/viewspace-2214347/,如需轉載,請註明出處,否則將追究法律責任。

相關文章