ORA-14645: STORE IN clause cannot be specified for Range List objects ORACLE 报错 故障修复 远程处理

文档解释

ORA-14645: STORE IN clause cannot be specified for Range List objects

Cause: A STORE IN clause was specified for Range List partitioned object

Action: Re-issue the command after removng the STORE IN clause

官方解释

ORA-14645 异常提示,STORE IN 子句不可用于 Range List 对象。Range List 对象使用 B-tree 结构来存储,OREA-14645 异常指出不同类型的算子,例如,Range List 在创建时,STORE IN 语句是不支持的。

常见案例

ORA-14645 异常通常在 CREATE TABLE 子句中出现,当创建 Range List 对象时,系统提示 B-tree 结构不支持 STORE IN 语句。比如:

CREATE TABLE T1

(

col1 NUMBER,

col2 INTEGER RANGE (1000..2000) STORE IN(ind_col1_col2)

);

正常处理方法及步骤

将 STORE IN 子句从 CREATE TABLE 语句中删除:

CREATE TABLE T1

(

col1 NUMBER,

col2 INTEGER RANGE (1000..2000)

);


数据运维技术 » ORA-14645: STORE IN clause cannot be specified for Range List objects ORACLE 报错 故障修复 远程处理