Quantcast
Channel: SQLServerCentral » SQL Server 2008 » Data Corruption (SS2K8 / SS2K8 R2) » Latest topics
Viewing all articles
Browse latest Browse all 223

CHECKDB reported consistency errors, but second run is clean

$
0
0
I ran dbcc checkdb with no_infomsgs, all_errormsgs from a scheduled job and got this in the Stack Dump file:DBCC RESULTS--------------------<DbccResults> <Dbcc ID="0" Error="8928" Severity="16" State="1">Object ID 95651734, index ID 1, partition ID 72057604988862464, alloc unit ID 72057605012324352 (type In-row data): Page (1:5770272) could not be processed. See other errors for details.</Dbcc> <Dbcc ID="1" Error="8939" Severity="16" State="98">Table error: Object ID 95651734, index ID 1, partition ID 72057604988862464, alloc unit ID 72057605012324352 (type In-row data), page (1:5770272). Test (IS_OFF (BUF_IOERR, pBUF->bstat)) failed. Values are 12716041 and -4.</Dbcc> <Dbcc ID="2" Error="8976" Severity="16" State="1">Table error: Object ID 95651734, index ID 1, partition ID 72057604988862464, alloc unit ID 72057605012324352 (type In-row data). Page (1:5770272) was not seen in the scan although its parent (1:7287343) and previous (1:5770127) refer to it. Check any previous errors.</Dbcc> <Dbcc ID="3" Error="8978" Severity="16" State="1">Table error: Object ID 95651734, index ID 1, partition ID 72057604988862464, alloc unit ID 72057605012324352 (type In-row data). Page (1:5770273) is missing a reference from previous page (1:5770272). Possible chain linkage problem.</Dbcc> <Dbcc ID="4" Error="8990" Severity="10" State="1">CHECKDB found 0 allocation errors and 4 consistency errors in table 'APDISTRIB' (object ID 95651734).</Dbcc> <Dbcc ID="5" Error="8928" Severity="16" State="1">Object ID 814938275, index ID 1, partition ID 72057605271519232, alloc unit ID 72057605294981120 (type In-row data): Page (1:516276) could not be processed. See other errors for details.</Dbcc> <Dbcc ID="6" Error="8976" Severity="16" State="1">Table error: Object ID 814938275, index ID 1, partition ID 72057605271519232, alloc unit ID 72057605294981120 (type In-row data). Page (1:516276) was not seen in the scan although its parent (1:14556151) and previous (1:516275) refer to it. Check any previous errors.</Dbcc> <Dbcc ID="7" Error="8978" Severity="16" State="1">Table error: Object ID 814938275, index ID 1, partition ID 72057605271519232, alloc unit ID 72057605294981120 (type In-row data). Page (1:516277) is missing a reference from previous page (1:516276). Possible chain linkage problem.</Dbcc> <Dbcc ID="8" Error="8990" Severity="10" State="1">CHECKDB found 0 allocation errors and 3 consistency errors in table 'PAYDEDUCTN' (object ID 814938275).</Dbcc> <Dbcc ID="9" Error="8989" Severity="10" State="1">CHECKDB found 0 allocation errors and 7 consistency errors in database 'TEST'.</Dbcc> <Dbcc ID="10" Error="8957" Severity="-1" State="1">DBCC CHECKDB (TEST) WITH all_errormsgs, no_infomsgs executed by KENNEDY\sqladmin found 7 errors and repaired 0 errors. Elapsed time: 0 hours 57 minutes 14 seconds. Internal database snapshot has split point LSN = 0006452a:00000253:0001 and first LSN = 0006452a:00000252:0001.</Dbcc> <Dbcc ID="11" Error="8958" Severity="10" State="1">repair_allow_data_loss is the minimum repair level for the errors found by DBCC CHECKDB (TEST).</Dbcc> </DbccResults> **Dump thread - spid = 0, EC = 0x00000000CE292080 ***Stack Dump being sent to C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\LOG\SQLDump0001.txt I then ran DBCC CHECKTABLE for the two tables in the results above (APDISTRIB and PAYDEDUCTN) in Query Analyzer and both ran clean:DBCC results for 'PAYDEDUCTN'.There are 25095197 rows in 1411311 pages for object "PAYDEDUCTN".DBCC execution completed. If DBCC printed error messages, contact your system administrator.DBCC results for 'APDISTRIB'.There are 650068 rows in 70844 pages for object "APDISTRIB".DBCC execution completed. If DBCC printed error messages, contact your system administrator.I then ran DBCC CHECKDB again and it ran clean:... CHECKDB found 0 allocation errors and 0 consistency errors in database 'TEST'.DBCC execution completed. If DBCC printed error messages, contact your system administrator.I'm confused. Should I still be concerned?Thanks all.

Viewing all articles
Browse latest Browse all 223

Trending Articles