ORA-25110: NOSORT may not be used with a bitmap index
Cause: An attempt was made to create a bitmap index using the NOSORT option.
Action: Remove NOSORT from the CREATE BITMAP INDEX statement.
ORA-25110是通知ORACLE表中的某些列的索引可以使用NOSORT选项,但是索引不是位图索引。
当创建或重建位图索引时,如果在其中使用NOSORT选项,则会发生ORA-25110错误。
1.从ALTER INDEX语句中删除NOSORT选项。
2.创建或重建位图索引,并同时使用COMPUTE STATISTICS选项来收集索引统计信息。