热门标签 | HotTags
当前位置:  开发笔记 > 数据库 > 正文

ORA-08102的错误

ORA-08102:indexkeynotfound,obj#304067,dba33580767(2)

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;

问题解决!

本文永久更新链接地址


推荐阅读
author-avatar
UJXo小妖春日望美
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有