Stevehewitt
IS-IT--Management
Hi all,
Not a SQL DBA, so please bare with me!
Got SharePoint 2007, which uses SQL 2005 on the locahost.
For some unknown reason, the searching service in SharePoint wouldn't work, and after a bit of troubleshooting it appears that the 'SharedServices1_Search_DB' database is flagged as suspect. I have no idea why this is, as I am unaware of any changes to the system prior to it working fine.
We've only have SharePoint 2 months, and thus still waiting for a backup exec licence for the sharepoint agent - so no backup!!!!
So far, i've tried the FAQ on this forum, and ran the following statements:
This simply resulted in "The suspect flag on the database "SharedServices1_Search_DB" is already reset."
I've also ran:
Which just tells me that the DB cannot be checked as it's already suspect. (how useful!)
It's a SQL 2005 Enterprise Edition Installation with Service Pack 2 and all recent hotfixes etc. There's multiple databases in this instance, all of which are working fine. There is also another instance which is used for another application.
If someone could help it would be very much appreciated!!!
Cheers,
Steve.
"They have the internet on computers now!" - Homer Simpson
Not a SQL DBA, so please bare with me!
Got SharePoint 2007, which uses SQL 2005 on the locahost.
For some unknown reason, the searching service in SharePoint wouldn't work, and after a bit of troubleshooting it appears that the 'SharedServices1_Search_DB' database is flagged as suspect. I have no idea why this is, as I am unaware of any changes to the system prior to it working fine.
We've only have SharePoint 2 months, and thus still waiting for a backup exec licence for the sharepoint agent - so no backup!!!!
So far, i've tried the FAQ on this forum, and ran the following statements:
Code:
USE master
GO
sp_configure 'allow updates', 0
GO
RECONFIGURE WITH OVERRIDE
GO
sp_resetstatus 'SharedServices1_Search_DB'
This simply resulted in "The suspect flag on the database "SharedServices1_Search_DB" is already reset."
I've also ran:
Code:
Use Master
Go
Dbcc Checkdb('SharedServices1_Search_DB')
Which just tells me that the DB cannot be checked as it's already suspect. (how useful!)
It's a SQL 2005 Enterprise Edition Installation with Service Pack 2 and all recent hotfixes etc. There's multiple databases in this instance, all of which are working fine. There is also another instance which is used for another application.
If someone could help it would be very much appreciated!!!
Cheers,
Steve.
"They have the internet on computers now!" - Homer Simpson