610 pts.
 PL/SQL error
Hi Experts, I am getting the follwoing error ORA-08102: index key not found, obj# 141051, file 28, block 15245 (2) I tried rebuild on that specific obj id still error persist wat are the possible causes and how to overcome please guide me

Software/Hardware used:
ASKED: February 5, 2009  8:32 AM
UPDATED: February 9, 2009  4:34 AM

Answer Wiki:
If the corruption is in the index, then rebuilding the index won't help, because it will rebuild from itself with the corrupt information. If that is the case you will need to drop the index and create it again. If re-creating the index doesn't solve the problem, then the corruption may be in the table. If the number of different values in the index is small, you could issue a SELECT statement against the table to get the indexed column, forcing a full table scan. For example, if the indexed column is YEAR. The statement should be something like this: <pre>SELECT /*+ FULL */ year from table_X where year not in (2000,2001,2002,2003,2004,2005,2006,2007,2008);</pre> Being 2000-2008 the only values that exists in the index. If this select returns some rows, those are the corrupted ones, and you will need to drop any index containing the column, delete or update the table with the appropriate values for this rows, and then create the necessary indexes again. As for the possible causes, it could be a number of things: - memory problems - system crashes - disk errors - it could also be caused by disk repair utilities Please tell us if you solve the problem.
Last Wiki Answer Submitted:  February 5, 2009  2:06 pm  by  carlosdl   63,535 pts.
All Answer Wiki Contributors:  carlosdl   63,535 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Hi,

Rebuilding index and free up some tablespace helped me to resolve this issue.

thanks !!!

 610 pts.