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;  


转载自:http://hi.baidu.com/zpjava/blog/item/0d17d7ddf69aee315882dd7c.html

相关文章:

  • 2022-12-23
  • 2021-12-15
  • 2022-01-11
  • 2021-05-21
  • 2021-11-04
  • 2022-02-26
  • 2022-12-23
  • 2021-07-25
猜你喜欢
  • 2022-12-23
  • 2021-06-03
  • 2021-10-23
  • 2021-11-07
  • 2021-09-04
  • 2022-12-23
  • 2021-06-07
相关资源
相似解决方案