ORA-14170: cannot specify clause in CREATE TABLE or CREATE INDEX

文档解释

ORA-14170: cannot specify clause in CREATE TABLE or CREATE INDEX

Cause: A request was made to generate default partition description(s) (possibly via PARTITIONS ) while at the same time specified clause which is illegal.

Action: Remove one of offending clauses.

ORA-14170: cannot specify clause in CREATE TABLE or CREATE INDEX

该错误表明在 create table/index 操作中不能指定 将分区/子分区加入 table/index。

官方解释

Oracle 不支持在 create table/index 语句中指定 ,在这样的操作中,需要:

1. 先创建 table/index;

2. 再用 alter table 或 alter index 语句增加分区/子分区。

常见案例

当尝试在操作 create table/index 时使用 修饰时,可能会收到该错误提示,应使用正确方式正常处理操作。

正常处理方法及步骤

1. 先创建 table/index;

2. 再用 alter table 或 alter index 语句增加分区/子分区

你可能感兴趣的