zoukankan      html  css  js  c++  java
  • ECC system down

    Our SAP ECC system is down and we are unable to update as records and in SM13 update got deactivated.

    As per our observation, BALDAT table crossed 2billions of record and update got deactivated.

    Upon clean with 1.2 billion records, system still in deactivate status.(after activation it is going into deactivation again)

    Earlier record count : 2,147,451,854
    current record count : 1.210.096.070

    To expedite the issue resolving, we have checked the traces on your P01 system.

    in SM14, we could see the update is deactived:
    Status Update deactivated by system
    Server gvecsl9113sps_P01_01

    Based on the system log, we could see the update was deactivated and active repeatedly due to DB error 2055:
    05.09.2021 02:02:25 gvecsl9c00sps_P01_01 UP1 240 100 BTC_EHS @5CQvery high priority@ BYL Database error 2055 requires database administrator to intervene
    05.09.2021 02:02:25 gvecsl9c00sps_P01_01 UP1 240 100 BTC_EHS @5CQvery high priority@ R0R The update was deactivated following a system error
    05.09.2021 02:02:25 gvecsl9c00sps_P01_01 UP1 240 100 BTC_EHS @5CQvery high priority@ R1O Update request restarted after internal error

    05.09.2021 02:03:45 gvecsl9c00sps_P01_01 UP1 240 100 BTC_EHS @5CQvery high priority@ R1O Update request restarted after internal error
    05.09.2021 02:03:45 gvecsl9c00sps_P01_01 UP1 240 100 BTC_EHS @5CQvery high priority@ R0R The update was deactivated following a system error
    05.09.2021 02:03:45 gvecsl9c00sps_P01_01 UP1 240 100 BTC_EHS @5CQvery high priority@ BYL Database error 2055 requires database administrator to intervene


    ------------------------------------

     I think the issue matches KBA 2212518 - HANA error maximum number of rows per partition reached, because, the following SQL shows "RAW_RECORD_COUNT_IN_MAIN + RAW_RECORD_COUNT_IN_DELTA as TOTAL_RECORD" reached 2 billion limit.
    ----------------------------------------------

    select HOST, PORT, SCHEMA_NAME, TABLE_NAME, PART_ID, RAW_RECORD_COUNT_IN_MAIN, RAW_RECORD_COUNT_IN_DELTA, RAW_RECORD_COUNT_IN_MAIN + RAW_RECORD_COUNT_IN_DELTA as TOTAL_RECORD
    from M_CS_TABLES
    where SCHEMA_NAME = 'SAPABAP1' and TABLE_NAME like 'BALDAT';
    ----------------------------------------------
    >>>gvecsl5103sps 30140 SAPABAP1 BALDAT 0 2,128,158,698 19,324,947 2,147,483,645


    So, could you please follow instructions below to perform delta merge and force the compress of a table manually.
    ----------------------------
    The 2 billion record limit include also MVCC versions and Fulltext Index Structures. Ensure you have performed an optimized compression and a delta merge of this table before attempting to add more data.
    -To Compress a Column Table Manually, run the statement:
    UPDATE "" WITH PARAMETERS ('OPTIMIZE_COMPRESSION'='FORCE')
    -To perform a manual delta merge, check the Perform a Manual Delta Merge Operation.

    wechat: ywkonline Mobile: 13661767749 专注于SAP运维、升级、迁移
  • 相关阅读:
    react篇章-React State(状态)
    react篇章-React 组件-复合组件
    react篇章-React 组件-向组件传递参数
    react篇章-React 组件-ES6 class 来定义一个组件
    React篇章-React 组件
    复习常用算法_冒泡算法
    项目管理小结(如何做好一个百万级项目甚至千万级别的项目)
    AOP切点切面内容
    Spring 框架
    Spring MVC 框架
  • 原文地址:https://www.cnblogs.com/weikui/p/15229066.html
Copyright © 2011-2022 走看看