返回顶部
首页 > 资讯 > 错误编码 >ORA-30344: number of child cols different from number of parent level cols ORACLE 报错 故障修复 远程处理
  • 357
分享到

ORA-30344: number of child cols different from number of parent level cols ORACLE 报错 故障修复 远程处理

报错故障number 2023-11-05 07:11:45 357人浏览 独家记忆
摘要

文档解释 ORA-30344: number of child cols different from number of parent level cols Cause: The number of child columns speci

文档解释

ORA-30344: number of child cols different from number of parent level cols

Cause: The number of child columns specified in a JOIN KEY clause is not the same as the number of columns in the specified parent level.

Action: Check the child columns and the columns in the definition of the referenced parent level and correct the discrepency.

ORA-30344 错误指出,使用二级分区表结构定义时,子表级别要求与父表级别列数不一致。

官方解释

ORA-30344: number of child cols different from number of parent level cols

被定义的子表的级别的列数必须与父表的级别的列数完全一致。

例子:

父表定义:

CREATE TABLE PARENT_TABLE (

ID NUMBER,

CUSTOMER_ID NUMBER,

SEQ NUMBER

);

子表:

CREATE TABLE CHILD_TABLE (

ID NUMBER,

CUSTOMER_ID NUMBER

);

在这种情况下,查询:

ALTER TABLE CHILD_TABLE

partition by range (CUSTOMER_ID)

subpartition by list (SEQ)

(PARTITION P1 VALUES LESS THAN (10)

(SUBPARTITION P1S1 VALUES (1), P1S2 VALUES (2)));

就会产生ORA-30344:number of child cols different from number of parent level cols 错误。这是因为子表没有定义SEQ列,而父表却定义了该列。

一般处理方法及步骤

1.确保子表的列数与父表的级别的列数完全一致。

2.如果必须使用部分不同的列,则可以将记录放入null空间,以使子表与父表列数一致:

ALTER TABLE CHILD_TABLE

partition by range (CUSTOMER_ID)

subpartition by list (SEQ)

(PARTITION P1 VALUES LESS THAN (10)

(SUBPARTITION P1S1 VALUES (1, NULL), P1S2 VALUES (2, NULL) );

--结束END--

本文标题: ORA-30344: number of child cols different from number of parent level cols ORACLE 报错 故障修复 远程处理

本文链接: https://lsjlt.com/news/536538.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作