1、ERROR OGG-00665 OCI Error creating temporary LOB to retrieve default LOB chunk size (status = 25153-ORA-25153: Temporary Tablespace is Empty), SQL。
重建数据库控制文件后,忘记添加临时表空间文件。
添加临时表空间文件即可。
alter tablespace temp01 add tempfile '/u01/app/oracle/oradata/temp01.dbf' size reuse;
2、ERROR OGG-00730 No minimum supplemental logging is enabled. This may cause extract process to handle key update incorrectly if key column is not in first row piece.
需要同步的表或数据库未启用supplemental logging
alter database add supplemental log data;
alter database add supplemental log data(primary key,unique,foreign key) columns;
3、投递异常,报错代码OGG-01161、OGG-01668
对比两端数据表结构,报错字段数量、字段类型、字段约束、字段位置等信息
4、报错代码OGG-01172
dsc文件大小在prm中的megabytes设置偏小,或增长过快,详细问题结合dsc中的报错描述处理
5、OGG-02126: No valid parameter or command found in the parameter {0} in the character mapping file {1}.
原因:在字符映射文件中发现无效的命令或参数。
要执行的操作: 查看并修复字符映射文件中指定的参数。
6、OGG-03014: Source column {0} has more characters than target column {1} can hold. Some source characters will not be mapped during conversion from source character set {2} to target character set {3}.
原因:源列包含的字符数超过目标列可以容纳的字符数。
要执行的操作: 指定另一个目标列或使目标列大小等于或大于源列大小。




