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,指定使用哪个索引来对表进行查询。