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 MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Index Issue w/ Datawarehouse table !!!!

Status
Not open for further replies.
Mar 27, 2001
29
US
Anyone have an idea as to this issue given below. pulled it off the detail from job history on a job we have scheduled!

DWF_BN_SALE_DETAIL: START: Warehousing for Oct 31 2000 12:00AM - Datawarehouse [SQLSTATE 01000] (Message 0) The index entry for row ID was not found in index ID 9, of table 1508200423, in database 'DataWarehouse'. [SQLSTATE HY000] (Error 8646). The step failed.


any help would be great!

Thanks
J. Kusch
 
Hi James,

It sounds like your index may have become corrupted. Depending on the size of the table, the options you have are:

1. Drop and re-build the index
2. Run DBCC and see if this identifies and solves the problem.

Good luck,

Tim
 
i was ahead of you by just a step. i ran DBCC with the following params ... DBCC DBREINDEX (TableName, '', 70). this command rebuilds all indexes on the tablename listed w/ a fill factor of 70. this way it pretty automatic and there are few steps in dropping and then recreating the indexes. i do thank you for your quick response!!

J. Kusch
 
I think you try to insert in a table with a foreign key, a value what in missed in the table source for this key. John Fill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top