ORA-29918: cannot create domain indexes on temporary tables

文档解释

ORA-29918: cannot create domain indexes on temporary tables

Cause: An attempt was made to create a domain index on a temporary table

Action: Either create another type of index on the temporary table or change the table from temporary to a permanent table

**错误描述:**ORA-29918:不能在临时表上创建域索引。

官方解释

常见案例

一般处理方法及步骤

解决办法是为每个查询来提供更好的优化。在使用Oracle中,可以考虑使用查看或索引优化器,来查看查询中的索引应该被使用,以及改进查询性能。另外,很多时候在ORA-29918发生错误后,可以使用Index Hint,指定使用哪个索引来对表进行查询。

你可能感兴趣的