文档解释
ORA-01715: UNIQUE may not be used with a cluster index
Cause: An attempt was made to create a cluster index with the UNIQUE attribute.
Action: Remove UNIQUE from the CREATE INDEX statement.
这是一个Oracle数据库的错误,它用于指示在使用集群索引时不允许使用UNIQUE关键字。
官方解释
常见案例
正常处理方法及步骤
1)首先,使用DROP INDEX语句移除当前集群索引;
2)然后使用CREATE UNIQUE INDEX语句重新创建唯一索引;
3)最后,使用CREATE CLUSTERED INDEX语句创建集群索引。