zoukankan      html  css  js  c++  java
  • 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

     

  • 相关阅读:
    SpringCloud 学习笔记(7)路由网关Zuul
    调用数据库中某特定项的方法
    节点在TreeView中无限添加,无刷新实现父节点选中,子节点同时选中
    jQuery formValidator 表单校验插件4.1.1高仿网易邮箱注册页面(已发演示链接)
    jQuery formValidator 4.0 表单验证插件(正式版)
    jQuery formValidator表单验证插件4.1.0 下载 演示 文档 可换肤 代码生成器
    jQuery formValidator表单验证插件3.5a 版本发布,适合jQuery1.3.2类库
    武林英雄辅助工具
    jQuery formValidator表单验证插件4.1.3提供下载
    jQuery formValidator4.0.1 表单校验插件更新日志(已提供下载)
  • 原文地址:https://www.cnblogs.com/blfshiye/p/4009867.html
Copyright © 2011-2022 走看看