• There is an error while getting planid. No Free partitions available


    问题概述

    Oracle Advanced Supply Chain Planning最初的设置职责的时候有点问题,不知是不是要打什么补丁或其它配置什么东东,,



    这个提示,,但我查到的分区是还有可用分区的,里面的逻辑关系有点搞乱

    解决方法

    原因:因为 ORA-02149: 指定的分区不存在
    ORA-06512: 在 "SYSTEM.AD_DDL", line 165
    ORA-06512: 在 "APPS.MSC_MANAGE_PLAN_PARTITIONS", line 348
    ORA-14074: 分区界限必须调整为高于最后一个分区界

     

    Note: 313642.1 - Create Aps Partitions Fails With Ora-2149 Ora-6512 Ora-14501

     https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=313642.1

     

    Create Aps Partitions Fails With ORA-2149 ORA-6512 ORA-14501 (文档 ID 313642.1)

     

    改动时间:2013-12-16类型:PROBLEM

     

    In this DocumentSymptoms

    Cause

    Solution

    References

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

    This document is being delivered to you via Oracle Support's Rapid Visibility (RaV) process and therefore has not been subject to an independent technical review.

     

     

    Applies to:

    Oracle Advanced Supply Chain Planning - Version 11.5.8 and later

    Information in this document applies to any platform.

     EXECUTABLE:MSCCRPAR - Create APS Partitions

     

    ***Checked for relevance on 16-DEC-2013***

     

     

     

    Symptoms

     

    When attempting to create an ASCP plan name the following error message is generated:

     

    There is an error while getting plan id. No free partitions available.

     

    Profile option MSC:Share Plan Partitions = No

     Create APS partitions program - MSCCRPAR - with parameters 0 for instance and 1 for plan fails with the following:

     

    ORACLE error 2149 in FDPSTP

     

    Cause: FDPSTP failed due to ORA-02149: Specified partition does not exist

     ORA-06512: at "SYSTEM.AD_DDL", line 154

     ORA-06512: at "APPS.MSC_MANAGE_PLAN_PARTITIONS", line 256

     ORA-14501: object is not partitioned

     

    Cause

     

    Table msc_exc_details_all is not partitioned

     

    This is one of several tables that must be partitioned and when the MSCCRPAR process goes out to

     create a Plan partition, it checks to make sure all of the tables are partitioned first before

     creating the new partition. Since this one table is not partitioned, the program errored.

     

    Solution

     

    1.  Run the following script to determine which tables owned by MSC are partitioned:

     

    select a.table_name,a.partition_name,a.num_rows

     from all_tab_partitions a,dba_part_tables b

     where a.table_name = b.table_name

     and b.owner = 'MSC'

     order by 1,2;

     

    2.  Match the output of step 1 with the list of tables in note 137293.1 Appendix B. In this particular case, it was found that table msc_exc_details_all was not partitioned.

     

    3.  In order to make this table partitioned, the latest Memory Based Planning Engine patch for 11.5.8 needs to be applied per Section I of note 223026.1.  Rerun step 1 to confirm table partitioning after application of the patch.

     

    4.  Rerun MSCCRPAR - Create APS Partitions

     

    References

    NOTE:137293.1 - How to Manage APS Partitions in the MSC Schema

    NOTE:223026.1 - List of High Priority Patches for the Value Chain Planning (aka APS - Advanced Planning & Scheduling) Applications

     

  • 相关阅读:
    258. Add Digits 数位相加到只剩一位数
    7. Reverse Integer 反转整数
    9. Palindrome Number 回文数的判断
    824. Goat Latin山羊拉丁文
    819. Most Common Word 统计高频词(暂未被禁止)
    Angular 2 模板语法
    HTML DOM Style opacity 属性
    Basic concepts (C language) – C 中文开发手册
    JavaScript手册 | JS Array 对象中的fill()方法
    HTML <form> 标签
  • 原文地址:https://www.cnblogs.com/blfshiye/p/4009867.html
Copyright © 2020-2023  润新知