博客
关于我
oracle ORA-14402 OGG-01296
阅读量:793 次
发布时间:2023-02-24

本文共 2658 字,大约阅读时间需要 8 分钟。

2018-06-22 14:58:04 WARNING OGG-01003 Oracle GoldenGate Delivery for Oracle, repsl.prm: Repositioning to rba 67512607 in seqno 320.

2018-06-22 14:58:04 WARNING OGG-01154 Oracle GoldenGate Delivery for Oracle, repsl.prm: SQL error 14402 mapping SE.T_TEST_SET to TS.T_TEST_SET OCI Error ORA-14402: updating partition key column would cause a partition change. UPDATE "SSP"."T_TEST_SET" SET "STR_DT" = :a1 WHERE "SET_ONO" = :b0.
2018-06-22 14:58:04 WARNING OGG-01003 Oracle GoldenGate Delivery for Oracle, repsl.prm: Repositioning to rba 67512607 in seqno 320.
2018-06-22 14:58:04 ERROR OGG-01296 Oracle GoldenGate Delivery for Oracle, repsl.prm: Error mapping from SE.T_TEST_SET to TS.T_TEST_SET.
2018-06-22 14:58:04 ERROR OGG-01668 Oracle GoldenGate Delivery for Oracle, repsl.prm: PROCESS ABENDING.

The replication process for the REPSL group has encountered an error during the synchronization of data. The error log indicates that an SQL statement is failing to map correctly, resulting in an ORA-14402 error. This error occurs when updating a partition key column, which would cause a partition change. The failed SQL statement is:

UPDATE "SSP"."T_TEST_SET" SET "STR_DT" = :a1 WHERE "SET_ONO" = :b0

Upon examining the GoldenGate logs and performing a logdump, it was identified that the replication process had paused due to an ABENDED status. The process was stuck in a state where it could not continue without resolving the mapping error.

To resolve this, the following steps were taken:

  • Identify the problematic sequence number and RBA (Redo Branch Advancement): The logdump revealed that the process was attempting to reposition to RBA 67512607 in sequence number 320. This indicated that the replication was trying to access an incorrect or invalid position in the log.

  • Adjust the sequence number and RBA: The alter REPSL ,extseqno 320 extrba 67512782 command was executed to update the sequence number and the RBA. This effectively reset the replication process to a valid state.

  • Restart the replication process: After confirming that the REPSL group was ABENDED, the start repsl command was issued to resume the replication process.

  • Following these steps, the replication process was successfully restarted, and the error condition was resolved. The replication group now operates normally, with no further ABENDED states or ORA-14402 errors being reported.

    This issue highlights the importance of monitoring GoldenGate replication processes and being able to respond promptly to errors that prevent the replication from continuing. Regular log analysis and adjustments are crucial to maintaining the integrity and availability of replicated data.

    转载地址:http://ivpfk.baihongyu.com/

    你可能感兴趣的文章
    opencv图像切割1-KMeans方法
    查看>>
    OpenCV图像处理篇之阈值操作函数
    查看>>
    opencv图像特征融合-seamlessClone
    查看>>
    OpenCV图像的深浅拷贝
    查看>>
    OpenCV在Google Colboratory中不起作用
    查看>>
    OpenCV学习(13) 细化算法(1)(转)
    查看>>
    OpenCV学习笔记(27)KAZE 算法原理与源码分析(一)非线性扩散滤波
    查看>>
    OpenCV学堂 | CV开发者必须懂的9种距离度量方法,内含欧氏距离、切比雪夫距离等(建议收藏)
    查看>>
    OpenCV学堂 | OpenCV案例 | 基于轮廓分析对象提取
    查看>>
    OpenCV学堂 | YOLOv8与YOLO11自定义数据集迁移学习效果对比
    查看>>
    OpenCV学堂 | YOLOv8官方团队宣布YOLOv11 发布了
    查看>>
    OpenCV学堂 | YOLOv8实战 | 荧光显微镜细胞图像检测
    查看>>
    OpenCV学堂 | 汇总 | 深度学习图像去模糊技术与模型
    查看>>
    OpenCV安装
    查看>>
    OpenCV官方文档 理解k - means聚类
    查看>>
    opencv实现多路播放
    查看>>
    opencv常用函数
    查看>>
    OpenCV探索
    查看>>
    OpenCV添加中文(五)
    查看>>
    OpenCV点目标检测未找到所有目标,并且找到的圆圈偏移
    查看>>