返回顶部
首页 > 资讯 > 错误编码 >ORA-14255: table is not partitioned by Range, List, Composite Range or Composite List method ORACLE
  • 291
分享到

ORA-14255: table is not partitioned by Range, List, Composite Range or Composite List method ORACLE

报错故障table 2023-11-05 02:11:54 291人浏览 独家记忆
摘要

文档解释 ORA-14255: table is not partitioned by Range, List, Composite Range or Composite List method Cause: The table was n

文档解释

ORA-14255: table is not partitioned by Range, List, Composite Range or Composite List method

Cause: The table was not partitioned by Range, List, Composite Range or Composite List method.

Action: ALTER TABLE SPLIT/DROP PARTITION or ALTER TABLE MERGE PARTITIONS command is only valid for table partitioned by Range, List, Composite Range or Composite List methods. Ensure that the table is partitioned appropriately.

ORA-14255:表没有采用范围、列表、复合范围或复合列表方法进行分区

官方解释

常见案例

正常处理方法及步骤

1.通过执行select table_name,partitioning_tyle from user_tables视图,可以查询出当前table是否已经有了分区,如果partitioning_tyle为null或者NONE则表示当前table没有分区。

2.通过执行以下DDL语句分成该table:

CREATE TABLE

(

. . . .

)

PARTITION BY RANGE (coulom_name)

(

PARTITION part_name VALUES LESS THAN (value)

);

3.重新尝试插入数���,此时就不会出现ORA-14255错误。

--结束END--

本文标题: ORA-14255: table is not partitioned by Range, List, Composite Range or Composite List method ORACLE

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

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

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

  • 微信公众号

  • 商务合作