ORA-29861 domain index is ed LOADING/FAILED/UNUSABLECause: An attempt has been made to access a domain index that is being built or is ed failed by an unsuccessful DDL or is ed unusable by a DDL operation.Action: Wait if the specified index is ed LOADING Drop the specified index if it is ed FAILED Drop or rebuild the specified index if it is ed UNUSABLE.

解决方案 »

  1.   

    thank you,我已经解决了。
    ora-29861: 域索引标记为loading/failed/unusable 解决:这是该表的一个intermedia索引有问题,该索引要么没有正确建立,要么是某次同步失败导致它状态异常。先查到是哪个索引: 
    Select idx_name,idx_status from ctxsys.ctx_indexes; 
    然后同步该索引或者强制删除它: 
    重建:alter index myindex rebuild online parameters('sync'); 
    删除:drop index myindex force;