Arcsde报ora-29861: 域索引标记为loading/failed/unusable错误

连接数据库的软件在编辑要素时突然报出这个错误:

Arcsde报ora-29861: 域索引标记为loading/failed/unusable错误_第1张图片

解决方法很简单,找出错误索引,再删除这个错误索引.

先执行

  select owner,index_name from all_indexes where domidx_status != 'VALID' or domidx_opstatus !='VALID'; 
找出所有错误的,然后删除它们

 drop index 错误的索引名;
Arcsde报ora-29861: 域索引标记为loading/failed/unusable错误_第2张图片

你可能感兴趣的:(ArcEngine,ArcSDE)