|
sql
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Page coruption
Msg 823, Level 24, State 2, Line 3 I/O error (bad page ID) detected during read at offset 0x000001d9bec000 in file 'g:\mssql\data\ecash_prod_Data.mdf'. or in an index rebuild I see this. TITLE: Microsoft SQL Server Management Studio ------------------------------ Rebuild failed for Index 'Customer2'. (Microsoft.SqlServer.Smo) For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Rebuild+Index&LinkId=20476 ------------------------------ ADDITIONAL INFORMATION: An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo) ------------------------------ Attempt to fetch logical page (1:631309) in database 'ecash_prod' belongs to object 'Electracash_Account', not to object 'Customer'. The statement has been terminated. (Microsoft SQL Server, Error: 605) For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=605&LinkId=20476 ------------------------------ BUTTONS: OK ------------------------------ What DBCC commands will recreate the paging properly? DBCC CheckBD or DBCC CHECKALLOC with repair_rebuild. Anything else? TIA Do a dbcc checktable on the affected table, and also a checkalloc to check
the disk structures. You can use the REPAIR_REBUILD option with checkalloc. On another note, check your disk space and make sure you have enough free, and schedule some time to do a CHKDSK when convenient. -- Show quoteHide quoteAndyP, Sr. Database Administrator, MCDBA 2003 "_Stephen" wrote: > I am seeing errors in my db all of a sudden. > > Msg 823, Level 24, State 2, Line 3 > > I/O error (bad page ID) detected during read at offset 0x000001d9bec000 in > file 'g:\mssql\data\ecash_prod_Data.mdf'. > > or in an index rebuild I see this. > > TITLE: Microsoft SQL Server Management Studio > ------------------------------ > > Rebuild failed for Index 'Customer2'. (Microsoft.SqlServer.Smo) > > For help, click: > http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Rebuild+Index&LinkId=20476 > > ------------------------------ > ADDITIONAL INFORMATION: > > An exception occurred while executing a Transact-SQL statement or batch. > (Microsoft.SqlServer.ConnectionInfo) > > ------------------------------ > > Attempt to fetch logical page (1:631309) in database 'ecash_prod' belongs to > object 'Electracash_Account', not to object 'Customer'. > The statement has been terminated. (Microsoft SQL Server, Error: 605) > > For help, click: > http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=605&LinkId=20476 > > ------------------------------ > BUTTONS: > > OK > ------------------------------ > > > > > What DBCC commands will recreate the paging properly? DBCC CheckBD or DBCC > CHECKALLOC with repair_rebuild. > > > > Anything else? > > > > TIA > > > > Error 823 usually indicates a hardware problem. You may continue to get
these errors even after running DBCC CHECKDB, or DBCC CHECKALLOC, etc. until the underlying problem is corrected. Make sure you check for additional messages in the SQL Server error log and system event log that might help you determine the root cause. Also check out your hardware, firmware drivers, BIOS, filter drivers (such as virus software), and other I/O path components. -- Show quoteHide quoteGail Erickson [MS] SQL Server Documentation Team This posting is provided "AS IS" with no warranties, and confers no rights "_Stephen" <sruss***@electracash.com> wrote in message news:%23lk9XgRSGHA.5924@TK2MSFTNGP09.phx.gbl... >I am seeing errors in my db all of a sudden. > > Msg 823, Level 24, State 2, Line 3 > > I/O error (bad page ID) detected during read at offset 0x000001d9bec000 in > file 'g:\mssql\data\ecash_prod_Data.mdf'. > > or in an index rebuild I see this. > > TITLE: Microsoft SQL Server Management Studio > ------------------------------ > > Rebuild failed for Index 'Customer2'. (Microsoft.SqlServer.Smo) > > For help, click: > http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Rebuild+Index&LinkId=20476 > > ------------------------------ > ADDITIONAL INFORMATION: > > An exception occurred while executing a Transact-SQL statement or batch. > (Microsoft.SqlServer.ConnectionInfo) > > ------------------------------ > > Attempt to fetch logical page (1:631309) in database 'ecash_prod' belongs > to object 'Electracash_Account', not to object 'Customer'. > The statement has been terminated. (Microsoft SQL Server, Error: 605) > > For help, click: > http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=605&LinkId=20476 > > ------------------------------ > BUTTONS: > > OK > ------------------------------ > > > > > What DBCC commands will recreate the paging properly? DBCC CheckBD or > DBCC CHECKALLOC with repair_rebuild. > > > > Anything else? > > > > TIA > > >
Other interesting topics
Move DB by backup/restore or SP_Detach?
Deadlocks "again" How to "Grant" a Trigger ??? IN clause with comma seperated values in select query Table comparison what kind of index to use in this situation. Management Studio Question.... Add User to Log-Shipped Database sqlserver 2005 express license how to crash/corrupt a Microsoft SQL 2005 Server? |
|||||||||||||||||||||||