Msg 8966, Level 16, State 1, Line 1 Could not read and latch page (1:1681) with latch type SH. sysindexes failed.
What does this mean ?
is it that DB is currupted?
Msg 8966, Level 16, State 1, Line 1 Could not read and latch page (1:1681) with latch type SH. sysindexes failed.
What does this mean ?
is it that DB is currupted?
Yes, your DB is corrupted, sorry.
Actions suggested by docs:
HARDWARE FAILURE
Run hardware diagnostics and correct any problems. Also examine the Microsoft® Windows NT® system and application logs and the SQL Server™ error log to see if the error occurred as the result of hardware failure. Fix any hardware related problems.
If you have persistent data corruption problems, try to swap out different hardware components to isolate the problem. Check to ensure that your system does not have write caching enabled on the disk controller. If you suspect this to be the problem, contact your hardware vendor.
Finally, you might find it beneficial to switch to a completely new hardware system, including reformatting the disk drives and reinstalling the operating system.
RESTORE FROM BACKUP
If the problem is not hardware related and a known clean backup is available, restore the database from the backup.
DBCC CHECKDB
If no clean backup is available, execute
DBCC CHECKDB
without a repair clause to determine the extent of the corruption.DBCC CHECKDB
will recommend a repair clause to use. Then, executeDBCC CHECKDB
with the appropriate repair clause to repair the corruption.
Caution
: If you are unsure what effectDBCC CHECKDB
with a repair clause has on your data, contact your primary support provider before executing this statement.There is no repair for this error, because it is only a symptom of the real problem. See the accompanying errors for details.