Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Could not find the index entry for RID - URGENT PLEASE

Status
Not open for further replies.

DavidJA

Programmer
Joined
Jan 10, 2002
Messages
58
Location
AU
Hey all;

My DB has started giving this error:
Server: Msg 644, Level 21, State 3, Line 1
Could not find the index entry for RID '16b823ff247f1786489b7894321e86dff2000040400000000000000000000000000' in index page (1:86393), index ID 0, database 'EzyBoard'.

Connection Broken


when I run a query with a particular parameter.

says to fix the problem I need to find the table and index from the index page number (86393);

So the question is, how to I convert an index page number to the name of a table and index?
 
Have you run DBCC CheckDB on the database to find and correct problems. The "Database Consistency Checker" should report index problems and may correct them. You can then drop and recreate the indexes.

Running DBCC dbreindex to rebuild all indexes on all tables in the database may also correct the problem. See BOL for details. Terry L. Broadbent
Programming and Computing Resources
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top