ORA-29852: keyword IS is missing ORACLE 报错 故障修复 远程处理
文档解释
ORA-29852: keyword IS is missing
Cause: IS keyword must be specified with Create Index statement for domain indexes.
Action: Use IS keyword and then specify the indextype name.
ORA-29852代表的含义是:关键字IS缺失。此类错误通常是由以下操作造成:用户在建立索引时少了IS关键字,比如只写了CREATE INDEX index_name,而没有IS关键字。
解决方法:针对ORA-29852错误,应该在建立索引语句中加入IS关键字,比如:
CREATE INDEX index_name
ON table_name(column_name)
IS
TABLE_TYPE
另外也可以对当前索引使用DROP INDEX 命令进行删除,然后重建索引,并在语句中包含IS关键字进行重建。