Recently after storage issue we started getting below error for one of our client database. Log backups were continuously failing.
BACKUP LOG [xxxxxxx] TO DISK = N'N: \\DATABASE..." failed with the following error: "The operating system returned error 21(The device is not ready.) to SQL Server during a read at offset 0x00000000040000 in file 'Q:\\DATABASE_FILES\\xxxxxxxx.mdf'
Additional messages in the SQL Server error log and system event log may provide more detail. This is a severe system-level error condition that threatens database integrity and must be corrected immediately. Complete a full database consistency check (DBCC CHECKDB). This error can be caused by many factors; for more information, see SQL Server Books Online.
When we checked we found database was online but log backups are not getting successful and continuously throwing above error. We tried to take manual log backup however we observed same behavior.
We also tried to run DBCC CHECKDB on that database however its failed.
After searching on google to fix this issue either we need to restart SQL Server or take that particular database offline and online.
As it was production hours so we did not have option to restart SQL Server as other critical databases resides on same server.
So we took database offline and online which resolved our issue.
BACKUP LOG [xxxxxxx] TO DISK = N'N: \\DATABASE..." failed with the following error: "The operating system returned error 21(The device is not ready.) to SQL Server during a read at offset 0x00000000040000 in file 'Q:\\DATABASE_FILES\\xxxxxxxx.mdf'
Additional messages in the SQL Server error log and system event log may provide more detail. This is a severe system-level error condition that threatens database integrity and must be corrected immediately. Complete a full database consistency check (DBCC CHECKDB). This error can be caused by many factors; for more information, see SQL Server Books Online.
When we checked we found database was online but log backups are not getting successful and continuously throwing above error. We tried to take manual log backup however we observed same behavior.
We also tried to run DBCC CHECKDB on that database however its failed.
After searching on google to fix this issue either we need to restart SQL Server or take that particular database offline and online.
As it was production hours so we did not have option to restart SQL Server as other critical databases resides on same server.
So we took database offline and online which resolved our issue.