Article ID: 926070 - Last Review: November 20, 2007 - Revision: 1.3 Error messages may be logged in the SQL Server error log after you run a DBCC command in SQL Server 2005SYMPTOMSYou run one of the following DBCC commands in Microsoft SQL Server 2005:
2006-09-01 17:33:24.48 spid54 35 transactions rolled forward in database 'ProductionData' (11). This is an informational message only. No user action is required. 2006-09-01 17:35:39.16 spid54 4 transactions rolled back in database 'ProductionData' (11). This is an informational message only. No user action is required. 2006-09-01 17:36:31.76 spid53 Error: 17053, Severity: 16, State: 1. 2006-09-01 17:36:31.76 spid53 E:\SQLData\ProductionData.mdf:MSSQL_DBCC11: Operating system error 112(There is not enough space on the disk.) encountered. 2006-09-01 17:36:31.76 spid53 Error: 17053, Severity: 16, State: 1. 2006-09-01 17:36:31.76 spid53 E:\ SQLData \ProductionData.mdf:MSSQL_DBCC11: Operating system error 112(There is not enough space on the disk.) encountered. 2006-09-01 17:36:31.77 spid53 Error: 17053, Severity: 16, State: 1. 2006-09-01 17:36:31.77 spid53 E:\ SQLData \ProductionData.mdf:MSSQL_DBCC11: Operating system error 112(There is not enough space on the disk.) encountered. 2006-09-01 17:36:31.80 spid54 DBCC CHECKDB (ProductionData) executed by DomainName\UserName found 0 errors and repaired 0 errors. Elapsed time: 0 hours 3 minutes 19 seconds. 2006-09-01 17:36:31.90 spid53 Error: 17053, Severity: 16, State: 1. 2006-09-01 17:36:31.90 spid53 E:\ SQLData \ProductionData.mdf:MSSQL_DBCC11: Operating system error 112(There is not enough space on the disk.) encountered. 2006-09-01 17:36:31.90 spid53 Error: 17053, Severity: 16, State: 1. 2006-09-01 17:36:31.90 spid53 E:\ SQLData \ProductionData.mdf:MSSQL_DBCC11: Operating system error 112(There is not enough space on the disk.) encountered. 2006-09-01 17:36:32.30 spid54 Error: 926, Severity: 21, State: 6. 2006-09-01 17:36:32.30 spid54 Database 'ProductionData' cannot be opened. It has been marked SUSPECT by recovery. See the SQL Server errorlog for more information. CAUSEIn SQL Server 2005, DBCC commands use internal read-only database snapshots. These database snapshots are created on the same drive where the corresponding database data files are located. Database snapshots grow in proportion to the amount of changed data in the database against which the DBCC commands run. If transactional activity continues on this database, the database snapshots that are created by DBCC commands may experience disk space issues. Because the database snapshot files and the actual data files reside on the same disk drive, both sets of files compete for disk space. In this case, application transactions or user transactions are given preference. Therefore, the DBCC commands experience errors and cannot finish. STATUS
This behavior is by design. MORE INFORMATIONThe following important information applies to the error messages that are mentioned in the "Symptoms" section:
In addition to the error messages that are mentioned in the "Symptoms" section, you may receive the following error message: Msg 5128, Level 17, State 2, Line 6
Write to sparse file 'E:\CreateFile\ProductionData.mdf:MSSQL_DBCC11' failed due to lack of disk space. DBCC results for 'ProductionData'.
CHECKDB found 0 allocation errors and 0 consistency errors in database 'ProductionData'. Msg 926, Level 21, State 6, Line 1 Database 'ProductionData' cannot be opened. It has been marked SUSPECT by recovery. See the SQL Server errorlog for more information. Msg 0, Level 20, State 0, Line 0 A severe error occurred on the current command. The results, if any, should be discarded. Msg 1823, Level 16, State 1, 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 5106, Level 17, State 2, Line 1 Write to sparse file 'E:\Data\LogFUllTest_Data.mdf:MSSQL_DBCC10' failed due to lack of disk space. APPLIES TO
| Article Translations
|

Back to the top
