ORA-25966: join index cannot be based on an index organized table

文档解释

ORA-25966: join index cannot be based on an index organized table

Cause: An attempt to create a join index was made, which failed because one of the tables was an index organized table.

Action: Ensure no underlying tables are index organized.

这是一个Oracle数据库管理系统中可能遇到的错误。ORA-25966:表示无法在索引组织表(IOT)上建立聚合索引(JOIN INDEX)。

官方解释

常见案例

一般处理方法及步骤

1.首先,将现有索引组织表移动到另一个表空间中,以便它不再被认为是一个索引组织表。

2.然后,在普通表上重新创建索引。

3.最后,将数据从索引组织表移动到新表中。

你可能感兴趣的