SharePoint Invalid index. (Exception from HRESULT: 0x80070585)

2. March 2011

If you face this error in SharePoint 2010 “Invalid index. (Exception from HRESULT: 0x80070585)” – this means that indexing needs to be correct for the view of the list to work.

To solve, please follow these steps:

1. Modify view of your list as shown in below screen shot:

clip_image002

2. Uncheck “Last Updated” field

clip_image004

3. Index problem should be resolved with this.

clip_image006

4. Now, repeat step 2 and check “Last Updated” field again.

 

Hope this helps!

Sharepoint

How to restore SharePoint Configuration Database from Suspect Status

2. March 2011

In order to restore SharePoint Configuration Database from Suspect Status back to the normal, please following following steps:

 

EXEC sp_resetstatus 'SharePoint_Config'

ALTER DATABASE SharePoint_Config SET EMERGENCY

DBCC checkdb('SharePoint_Config')

ALTER DATABASE SharePoint_Config SET SINGLE_USER WITH ROLLBACK IMMEDIATE

DBCC CheckDB ('SharePoint_Config', REPAIR_ALLOW_DATA_LOSS)

ALTER DATABASE SharePoint_Config SET MULTI_USER

 

Hope this helps!

Sharepoint