Hi All,
I need suggestion regarding one database that cannot be backup. Every time backup process is run against this particular database, it always failing with error message 845. The buffer latch error always happened on the same location (1, 24956). So I suspect
something is not right with that particular page.
Msg 3013, Level 16, State 1, Line 1
BACKUP DATABASE is terminating abnormally.
Msg 845, Level 17, State 1, Line 1
Time-out occurred while waiting for buffer latch type 3 for page (1:24956), database ID 8.
What I have done:
- Run
dbcc checkdb('db_name') with no_infomsgs, all_errormsgs
Result: Failed with same error message while running snapshot.
Msg 1823, Level 16, State 8, Line 1
A database snapshot cannot be created because it failed to start.
Msg 7928, Level 16, State 1, Line 1
The database snapshot for online checks could not be created. Either the reason is given in a previous error or one of the underlying volumes does not support sparse files or alternate streams. Attempting to get exclusive access to run checks offline.
Msg 5030, Level 16, State 12, Line 1
The database could not be exclusively locked to perform the operation.
Msg 7926, Level 16, State 1, Line 1
Check statement aborted. The database could not be checked as a database snapshot could not be created and the database or table could not be locked. See Books Online for details of when this behavior is expected and what workarounds exist. Also see previous
errors for more details.
Msg 845, Level 17, State 1, Line 1
Time-out occurred while waiting for buffer latch type 3 for page (1:24956), database ID 8.
- Run:
DBCC TRACEON (3604);
dbcc page (8, 1, 24956, 0);
DBCC TRACEOFF (3604);
GO
Result:
Msg 845, Level 17, State 1, Line 2
Time-out occurred while waiting for buffer latch type 2 for page (1:24956), database ID 8.
- Run scan disk, no error found.
The last backup for this database is from 6/19/2015. Apparently nobody was monitoring this database until I arrived last week. I'm thinking to put this database in single user mode and then run checkdb again. Appreciate any input on this matter. Thank you.