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

时间: 2024-10-28 19:50:55

There is an error while getting planid. No Free partitions available的相关文章

MySQL分区表管理

RANGE,LIST分区管理 1:为未分区表创建分区 ALTER TABLE trb3 PARTITION BY KEY(id) PARTITIONS 2; 2:删除某个分区的数据 ALTER TABLE tr DROP PARTITION p2; 3:为分区表添加一个分区 ALTER TABLE members ADD PARTITION (PARTITION p3 VALUES LESS THAN (2000)); ALTER TABLE tt ADD PARTITION (PARTITIO

MySQL分区管理

以下是我看MySQL官方文档的时候整理的笔记,仅作参考保留. RANGE,LIST分区管理 1:为未分区表创建分区 ALTER TABLE trb3 PARTITION BY KEY(id) PARTITIONS 2; 2:删除某个分区的数据 ALTER TABLE tr DROP PARTITION p2; 3:为分区表添加一个分区 ALTER TABLE members ADD PARTITION (PARTITION p3 VALUES LESS THAN (2000)); ALTER T

磁盘分区格式化,挂载,交换分区的挂载

硬盘分区并挂载 环境:虚拟机,centos6.5 1.添加一块硬盘20G 2.查看fdisk -l分区情况,是一块完整的盘 # fdisk -l Disk /dev/sdb: 21.5 GB, 21474836480 bytes 255 heads, 63 sectors/track, 2610 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes 

用HAWQ轻松取代传统数据仓库(八) —— 大表分区

一.HAWQ中的分区表        与大多数关系数据库一样,HAWQ也支持分区表.这里所说的分区表是指HAWQ的内部分区表,外部分区表在后面"外部数据"篇讨论.在数据仓库应用中,事实表通常有非常多的记录,分区可以将这样的大表在逻辑上分为小的.更易管理的数据片段.HAWQ的优化器支持分区消除以提高查询性能.只要查询条件中可以使用分区键作为过滤条件,那么HAWQ只需要扫描满足查询条件的分区,而不必进行全表扫描.        分区并不改变表数据在segment间的物理分布.表的分布是物理

Flink - FlinkKafkaConsumer08

  先看 AbstractFetcher 这个可以理解就是,consumer中具体去kafka读数据的线程,一个fetcher可以同时读多个partitions的数据来看看 /** * Base class for all fetchers, which implement the connections to Kafka brokers and * pull records from Kafka partitions. * * <p>This fetcher base class imple

4乳房天宫一号

http://travel.tianya.cn/travelPlan/showPlan?planId=6196668http://travel.tianya.cn/travelPlan/showPlan?planId=6196745http://travel.tianya.cn/travelPlan/showPlan?planId=6196819http://travel.tianya.cn/travelPlan/showPlan?planId=6196929http://travel.tian

kafka源码解析之十二KafkaController(下篇)

12.6 KafkaController内部的listener KafkaControler(leader)通过在zk的不同目录建立各种listener来达到对topic的管理和维护,其在zk的目录结构和对应的listener如下: 12.6.1 brokerChangeListener /** * This is the zookeeper listener that triggers all the state transitions for a replica */ class Broke

centos 6.5环境利用iscsi搭建SAN网络存储服务及服务端target和客户端initiator配置详解

一.简介 iSCSI(internet SCSI)技术由IBM公司研究开发,是一个供硬件设备使用的.可以在IP协议的上层运行的SCSI指令集,这种指令集合可以实现在IP网络上运行SCSI协议,使其能够在诸如高速千兆以太网上进行路由选择.iSCSI技术是一种新储存技术,该技术是将现有SCSI接口与以太网络(Ethernet)技术结合,使服务器可与使用IP网络的储存装置互相交换资料. iSCSI是一种基于TCP/IP 的协议,用来建立和管理IP存储设备.主机和客户机等之间的相互连接,并创建存储区域网

MySQL5.6.17分区表(二)

欢迎访问:鲁春利的工作笔记,学习是一种信仰,让时间考验坚持的力量. 子分区 http://dev.mysql.com/doc/refman/5.6/en/partitioning-subpartitions.html 又称为复合分区(composite partitioning),是在一个分区表中对分区的进一步拆分. CREATE TABLE ts_with_sub_partition (     id INT,      purchased DATE ) PARTITION BY RANGE(