ora-08102: index key not found, obj# 304067, dba 33580767 (2)
ora-08102: index key not found, obj# 304067, dba 33580767 (2)
oerr ora 8102
08102, 00000, index key not found, obj# %s, dba %s (%s)
// *cause: internal error: possible inconsistency in index
// *action: send trace file to your customer support representative, along
// with information on reproducing the error
错误信息的意思似乎是需要重新建立索引。
sql> select owner, object_name, object_type
2 from dba_objects
3 where object_id in (304067);
owner object_name object_type
------------------------------ -------------------------------------------------------------------------------- ------------------
share001 idx_share_tmp_ipid index
sql>alter index share001.idx_share_tmp_ipid rebuild online;
问题解决!
本文永久更新链接地址:
,