Home > Database > Mysql Tutorial > ORA-14300: 分区关键字映射到超出允许的最大分区数的分区

ORA-14300: 分区关键字映射到超出允许的最大分区数的分区

WBOY
Release: 2016-06-07 16:47:10
Original
3923 people have browsed it

ORA-14300: 分区关键字映射到超出允许的最大分区数的分区

ORA-14300: 分区关键字映射到超出允许的最大分区数的分区

环境为:Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production

对象表为按天的自动分区表:

PARTITION BY RANGE ("START_TIME") INTERVAL (NUMTODSINTERVAL(1,'DAY'))

原因为:当START_TIME的值为NULL时,然后向分区对象表插入数据,数据库不知道将该条记录插入到哪个分区,导致报错。

解决方法:需要给START_TIME赋值,,不能为空,数据库会自动将数据存入对应的已有分区,或者新建一个新的分区保存。

linux

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template