文档解释
ORA-14762: Domain index creation on interval partitioned tables is not permitted
Cause: An attempt was made to create a domain index on an interval partitioned table.
Action: Do not create a domain index on an interval partitioned table.
ORA-14762:在区间分区表上不允许创建域索引。
官方解释
常见的情况:尝试创建域索引时,如果表采用区间分区类型,将表示在此表上不允许创建域索引。
正常处理方法及步骤
1.首先,使用 ALTER TABLE 语句将区间分区表转换为另一种分区类型,例如 HASH 分区。
2.然后,使用 CREATE DOMAIN INDEX 命令创建域索引。