首頁  >  文章  >  資料庫  >  ORA-08102的错误

ORA-08102的错误

WBOY
WBOY原創
2016-06-07 14:58:181107瀏覽

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;

问题解决!

本文永久更新链接地址

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn