Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 Data Corruption Issues
 a failure of DBCC CheckDB

Author  Topic 

mememe
Starting Member

9 Posts

Posted - 2005-09-20 : 11:14:41
I got error after running DBCC checkDB, the error was:
-----------
[10] Database MyDB: Check Data and Index Linkage...
[Microsoft SQL-DMO (ODBC SQLState: 42000)] Error 8921: [Microsoft][ODBC SQL Server Driver][SQL Server]CHECKTABLE terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is corrupt. Check previous errors.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors not associated with any single object.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors in database 'MyDB'.
[Microsoft][ODBC SQL Server Driver][SQL Server]repair_fast is the minimum repair level for the errors found by DBCC CHECKDB (MyDB ).

The following errors were found:

[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKTABLE terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is corrupt. Check previous errors.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors not associated with any single object.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors in database 'MyDB'.
[Microsoft][ODBC SQL Server Driver][SQL Server]repair_fast is the minimum repair level for the errors found by DBCC CHECKDB (MyDB ).
** Execution Time: 1 hrs, 44 mins, 34 secs **
---------

Then after running DBCC CheckDB (MyDB, repair_fast), the error was:
---------------
Server: Msg 8966, Level 16, State 2, Line 1
Could not read and latch page (1:1879304) with latch type SH. Latch failed.
CHECKDB found 0 allocation errors and 1 consistency errors not associated with any single object.
CHECKDB found 0 allocation errors and 1 consistency errors in database 'MyDB'.
repair_fast is the minimum repair level for the errors found by DBCC CHECKDB (MyDB, repair_fast).
--------

If I run DBCC CheckTbale for each table, there is no error on those tables.

Please help. Thanks.

Linda

AndrewMurphy
Master Smack Fu Yak Hacker

2916 Posts

Posted - 2005-09-20 : 11:59:39
you MAY be looking in the wrong place....
the error message indicates ".....a TEMPDB space problem OR a SYSTEMDB problem", yet you CHECKDB'd a USERDB....can you resolve the 2 suggested areas?
Go to Top of Page

paulrandal
Yak with Vast SQL Skills

899 Posts

Posted - 2005-09-20 : 12:45:31
My guess is that one of the system tables in the mydb database is corrupt. Can you do the following in the mydb database and post the results of each:

DBCC CHECKTABLE (sysindexes) WITH NO_INFOMSGS, ALL_ERRORMSGS
DBCC CHECKTABLE (sysobjects) WITH NO_INFOMSGS, ALL_ERRORMSGS
DBCC CHECKTABLE (syscolumns) WITH NO_INFOMSGS, ALL_ERRORMSGS

Thanks

Paul Randal
Dev Lead, Microsoft SQL Server Storage Engine
(Legalese: This posting is provided "AS IS" with no warranties, and confers no rights.)
Go to Top of Page

ryanston
Microsoft SQL Server Product Team

89 Posts

Posted - 2005-09-20 : 12:47:18
The "failure was detected while collecting facts" error can be caused by many different reasons. The simplest to check is whether you actually did run out of TEMPDB space while running CHECKDB. Are there any messages in the error log that indicate this? If you run CHECKDB WITH ESTIMATE_ONLY, it will tell you the estimated amount of TEMPDB space we'll need to store facts about your database. Ensure that you have that amount free before running CHECKDB.

Thanks,

----------------------
Ryan Stonecipher
Developer, Microsoft SQL Server Storage Engine, DBCC
(Legalese: This posting is provided "AS IS" with no warranties, and confers no rights.)
Go to Top of Page

mememe
Starting Member

9 Posts

Posted - 2005-09-20 : 13:43:42
Hi, Paul

Thanks for the help.

Below is the results of running DBCC CheckTable for the 3 system tables
-------------
***DBCC CHECKTABLE (sysindexes) WITH NO_INFOMSGS
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

***DBCC CHECKTABLE (sysindexes) WITH ALL_ERRORMSGS
DBCC results for 'sysindexes'.
There are 641 rows in 30 pages for object 'sysindexes'.
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

***DBCC CHECKTABLE (sysobjects) WITH NO_INFOMSGS
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

***DBCC CHECKTABLE (sysobjects) WITH ALL_ERRORMSGS
DBCC results for 'sysobjects'.
There are 216 rows in 5 pages for object 'sysobjects'.
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

***DBCC CHECKTABLE (syscolumns) WITH NO_INFOMSGS
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

***DBCC CHECKTABLE (syscolumns) WITH ALL_ERRORMSGS
DBCC results for 'syscolumns'.
There are 1594 rows in 32 pages for object 'syscolumns'.
DBCC execution completed. If DBCC printed error messages, contact your system administrator.
------------

In fact, I have run DBCC CheckTable for all the system tables and user tables after I got the error from CheckDB (below), but I cannot get any error for all the tables after running CheckTable individually.
------------
Server: Msg 8966, Level 16, State 2, Line 1
Could not read and latch page (1:1879304) with latch type SH. Latch failed.
CHECKDB found 0 allocation errors and 1 consistency errors not associated with any single object.
CHECKDB found 0 allocation errors and 1 consistency errors in database 'MyDB'.
repair_fast is the minimum repair level for the errors found by DBCC CHECKDB (MyDB repair_fast).
-------------

Linda

Go to Top of Page

mememe
Starting Member

9 Posts

Posted - 2005-09-20 : 13:44:43
Hi, Ryan

Thanks for yout help.

My SQL Server version is SQL 7.0, so I cannot run CheckDB with ESTIMATEONLY.

The error (below 1) came form the Report of a xp_sqlmaint (-ckDB) at DB Maintenance Plan Job, so I do not know how the DB environment was at that time. When I ran CheckDB (MyDB, repair_fast), the log size of the tempdb was 129.74219 MB and Log Space Used % was 30.593134, which I felt it sounded OK. However, I got the error (below 2). Please advise! Thanks.

---------------
below 1:

Database MyDB: Check Data and Index Linkage...
[Microsoft SQL-DMO (ODBC SQLState: 42000)] Error 8921: [Microsoft][ODBC SQL Server Driver][SQL Server]CHECKTABLE terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is corrupt. Check previous errors.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors not associated with any single object.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors in database 'MyDB'.
[Microsoft][ODBC SQL Server Driver][SQL Server]repair_fast is the minimum repair level for the errors found by DBCC CHECKDB (MyDB ).

The following errors were found:

[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKTABLE terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is corrupt. Check previous errors.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors not associated with any single object.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors in database 'MyDB'.
[Microsoft][ODBC SQL Server Driver][SQL Server]repair_fast is the minimum repair level for the errors found by DBCC CHECKDB (MyDB ).
** Execution Time: 1 hrs, 44 mins, 34 secs **


below 2:

Server: Msg 8966, Level 16, State 2, Line 1
Could not read and latch page (1:1879304) with latch type SH. Latch failed.
CHECKDB found 0 allocation errors and 1 consistency errors not associated with any single object.
CHECKDB found 0 allocation errors and 1 consistency errors in database 'MyDB'.
repair_fast is the minimum repair level for the errors found by DBCC CHECKDB (MyDB repair_fast).

-------------


Go to Top of Page

ryanston
Microsoft SQL Server Product Team

89 Posts

Posted - 2005-09-20 : 15:16:46
Can you please post the results of the following - which may or may not work given the 8966 error...

DBCC TRACEON (3604)
DBCC PAGE (<your database>, 1, 1879304)

Thanks,
--R

----------------------
Ryan Stonecipher
Developer, Microsoft SQL Server Storage Engine, DBCC
(Legalese: This posting is provided "AS IS" with no warranties, and confers no rights.)
Go to Top of Page

paulrandal
Yak with Vast SQL Skills

899 Posts

Posted - 2005-09-20 : 15:24:27
You can use sp_checkdbtempsize on 7.0

Can you do a DBCC PAGE (mydb, 1, 1879304, 1) and post the output describing the page header?

Thanks

Paul Randal
Dev Lead, Microsoft SQL Server Storage Engine
(Legalese: This posting is provided "AS IS" with no warranties, and confers no rights.)
Go to Top of Page

mememe
Starting Member

9 Posts

Posted - 2005-09-20 : 16:09:58
Hi, Paul and Ryan,

Thanks again for the helps.

The tempdb size is 1120KB after running sp_checkdbtempsize.

The output of "DBCC TRACEON (3604)/DBCC PAGE (MyDB, 1, 1879304)' is:
-----------
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

PAGE:


BUFFER:

BUF @0x1426E300
---------------
bpage = 0x45A88000 bhash = 0x146FC0C0 bpageno = (1:1879304)
bdbid = 7 breferences = 0 bkeep = 1
bstat = 0x9 bspin = 0 bnext = 0x00000000

PAGE HEADER:

Page @0x45A88000
----------------
m_pageId = (1:1879304) m_headerVersion = 1 m_type = 1
m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0x8020
m_objId = 2030630277 m_indexId = 0 m_prevPage = (0:0)
m_nextPage = (0:0) pminlen = 20 m_slotCnt = 6
m_freeCnt = 1145 m_freeData = 7035 m_reservedCnt = 0
m_lsn = (10992:7851:1) m_xactReserved = 0 m_xactId = (0:13426721)
m_ghostRecCnt = 0 m_tornBits = 0
GAM (1:1533696) ALLOCATED, SGAM (1:1533697) NOT ALLOCATED, PFS (1:1876416) 0x43 ALLOCATED 95_PCT_FULL

DBCC execution completed. If DBCC printed error messages, contact your system administrator.
---------------

Go to Top of Page

ryanston
Microsoft SQL Server Product Team

89 Posts

Posted - 2005-09-21 : 19:57:04
Weird. There's nothign on the page that would indicate it should fail with that error. I'll take a look at the code and figure out what's going on. ETA tomorrow afternoon.

Thanks,
--R

----------------------
Ryan Stonecipher
Developer, Microsoft SQL Server Storage Engine, DBCC
(Legalese: This posting is provided "AS IS" with no warranties, and confers no rights.)
Go to Top of Page

oleg308
Starting Member

8 Posts

Posted - 2005-09-23 : 16:04:15
Hi everybody.
I have the very similar problem after HD fail.

When I run
DBCC CHECKTABLE (sysobjects) WITH NO_INFOMSGS, ALL_ERRORMSGS

I get this:

Server: Msg 8939, Level 16, State 98, Line 1
Table error: Object ID -1, index ID 65535, page (1:136). Test (IS_ON (BUF_IOERR, bp->bstat) && bp->berrcode) failed. Values are 2057 and -1.
Server: Msg 8966, Level 16, State 1, Line 1
Could not read and latch page (1:136) with latch type SH. sysobjects failed.

Do you think there is a way to fix the problem?
I don't have BU, just .mdb and .ldb

I can run SELECT * from sysobjects where id < 718625603
or SELECT * from sysobjects where id = 718625603
but any higher ID brings up the error:
Server: Msg 601, Level 12, State 3, Line 1
Could not continue scan with NOLOCK due to data movement.


Thanks in advance,
Oleg.
Go to Top of Page

paulrandal
Yak with Vast SQL Skills

899 Posts

Posted - 2005-09-24 : 12:15:07
Oleg - can you post the results from:

DBCC CHECKTABLE (sysobjects) WITH NO_INFOMSGS, ALL_ERRORMSGS

It looks like you've got corruption at the leaf level of sysobjects - this is not repairable and you'll need to restore from your backups (or try export/import to a new database)

Thanks

Paul Randal
Dev Lead, Microsoft SQL Server Storage Engine
(Legalese: This posting is provided "AS IS" with no warranties, and confers no rights.)
Go to Top of Page

oleg308
Starting Member

8 Posts

Posted - 2005-09-26 : 13:13:53

Hi Paul.

That's the results:

Server: Msg 8939, Level 16, State 98, Line 1
Table error: Object ID -1, index ID 65535, page (1:136). Test (IS_ON (BUF_IOERR, bp->bstat) && bp->berrcode) failed. Values are 2057 and -1.
Server: Msg 8966, Level 16, State 1, Line 1
Could not read and latch page (1:136) with latch type SH. sysobjects failed.


The problem is that I don't have a backup, the only things I have is .mdb and .ldb files.
I created the DB with the old name and replaced files with these ones.


Actually I have all the .mdb and .ldb from master, model, msdb and tempdb.
Would it help?

Regards,
Oleg.


Go to Top of Page

mememe
Starting Member

9 Posts

Posted - 2005-09-26 : 18:22:25
Hi, Paul and Ryan,

I come back because some new weird stuffs again.

Last time, after running DBCC CheckDB, the error was:
-----------

Server: Msg 8966, Level 16, State 2, Line 1
Could not read and latch page (1:1879304) with latch type SH. Latch failed.
CHECKDB found 0 allocation errors and 1 consistency errors not associated with any single object.
CHECKDB found 0 allocation errors and 1 consistency errors in database 'MyDB'.
repair_fast is the minimum repair level for the errors found by DBCC CHECKDB (MyDB repair_fast).

------------

But there was no any error if I run DBCC CheckTable for each table at MyDB database.

Then, by your suggestion to run
---------

DBCC TRACEON (3604)
DBCC PAGE (<your database>, 1, 1879304)

---------

There was no error on this too.

After that, I restored the failed MyDB database on another Dev server (SQL 7) and ran the same DBCC CheckDB on this Dev server. There was no error on this new Dev Server.

I made a mistake at my previous post. After run sp_checkdbtempsize at the failed MyDB database by your suggestion, the setimated tempdb size was 1682908 KB. Meanwhile, I got the error "Server: Msg 8115, Level 16, State 2, Procedure sp_checkdbtempsize, Line 57. / Arithmetic overflow error converting expression to data type int". "http://support.microsoft.com/default.aspx?scid=kb;en-us;300383" suggested me that the MyDB database might need more than 1682908 KB space for tempdb when running DBCC CheckDB on MyDB. However, the actual drive space on tempdb data/log file was 14 GB.

The free space for tempdb (data/log file) at the new Dev server was 36 GB.

So, I freed more space for tempdb data/log drive to 31 GB at the failed server. After running DBCC CheckDB, it still fails. The error was this time:
------------
[Microsoft SQL-DMO (ODBC SQLState: 42000)] Error 8966: [Microsoft][ODBC SQL Server Driver][SQL Server]Could not read and latch page (3:429340) with latch type SH. Latch failed.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors not associated with any single object.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors in database 'MyDB'.
[Microsoft][ODBC SQL Server Driver][SQL Server]repair_fast is the minimum repair level for the errors found by DBCC CHECKDB (MyDB).

The following errors were found:

[Microsoft][ODBC SQL Server Driver][SQL Server]Could not read and latch page (3:429340) with latch type SH. Latch failed.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors not associated with any single object.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 1 consistency errors in database 'MyDB'.
[Microsoft][ODBC SQL Server Driver][SQL Server]repair_fast is the minimum repair level for the errors found by DBCC CHECKDB (MyDB ).
------------

Last time, the error was in the page (1:1879304), but this time, the error is on the page (3:429340).

After running
---------

DBCC TRACEON (3604)
DBCC PAGE (MyDB, 3, 429340)

--------

The result is:

---------
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

PAGE:


BUFFER:

BUF @0x14EE0780
---------------
bpage = 0x4135C000 bhash = 0x14821680 bpageno = (3:429340)
bdbid = 7 breferences = 0 bkeep = 1
bstat = 0x9 bspin = 0 bnext = 0x00000000

PAGE HEADER:

Page @0x4135C000
----------------
m_pageId = (3:429340) m_headerVersion = 1 m_type = 1
m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0x8008
m_objId = 2030630277 m_indexId = 0 m_prevPage = (0:0)
m_nextPage = (0:0) pminlen = 20 m_slotCnt = 7
m_freeCnt = 4606 m_freeData = 7305 m_reservedCnt = 0
m_lsn = (78641:12193:85) m_xactReserved = 0 m_xactId = (0:0)
m_ghostRecCnt = 0 m_tornBits = 0
GAM (3:2) ALLOCATED, SGAM (3:3) NOT ALLOCATED, PFS (3:428664) 0x41 ALLOCATED 50_PCT_FULL

DBCC execution completed. If DBCC printed error messages, contact your system administrator.

--------

Please advise. Thanks.
Go to Top of Page

paulrandal
Yak with Vast SQL Skills

899 Posts

Posted - 2005-09-27 : 15:52:20
quote:
Originally posted by oleg308


Hi Paul.

That's the results:

Server: Msg 8939, Level 16, State 98, Line 1
Table error: Object ID -1, index ID 65535, page (1:136). Test (IS_ON (BUF_IOERR, bp->bstat) && bp->berrcode) failed. Values are 2057 and -1.
Server: Msg 8966, Level 16, State 1, Line 1
Could not read and latch page (1:136) with latch type SH. sysobjects failed.


The problem is that I don't have a backup, the only things I have is .mdb and .ldb files.
I created the DB with the old name and replaced files with these ones.


Actually I have all the .mdb and .ldb from master, model, msdb and tempdb.
Would it help?

Regards,
Oleg.




Sorry Oleg - I was too quick to skip straight to the results and assumed you'd run a CHECKDB rather than a CHECKTABLE.

Unfortunately, you're hosed. The only thing you can do is export as much data from the database as you can but you're going to eventually hit the bad page in sysobjects. You should be able to work around it though.

You need to establish the range of object IDs (and hence tables) that are described in that page. These tables you most likely will not be able to access. Try doing a DBCC PAGE (dbname, 1, 136, 3) and posting the results in a new thread. I'll help you from there.

Thanks


Paul Randal
Dev Lead, Microsoft SQL Server Storage Engine
(Legalese: This posting is provided "AS IS" with no warranties, and confers no rights.)
Go to Top of Page

mememe
Starting Member

9 Posts

Posted - 2005-09-27 : 16:21:47
Hi, Paul,
Thanks for your time again.

Below is the result to run DBCC PAGE (qadataplanadm, 1, 136, 3)
----------
PAGE:


BUFFER:

BUF @0x143B9A40
---------------
bpage = 0x50042000 bhash = 0x14216800 bpageno = (1:136)
bdbid = 7 breferences = 0 bkeep = 1
bstat = 0x9 bspin = 0 bnext = 0x00000000

PAGE HEADER:

Page @0x50042000
----------------
m_pageId = (1:136) m_headerVersion = 1 m_type = 3
m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0x8
m_objId = 1362103893 m_indexId = 255 m_prevPage = (0:0)
m_nextPage = (0:0) pminlen = 0 m_slotCnt = 24
m_freeCnt = 1602 m_freeData = 6556 m_reservedCnt = 0
m_lsn = (13346:15112:3) m_xactReserved = 0 m_xactId = (0:0)
m_ghostRecCnt = 0 m_tornBits = 0
GAM (1:2) ALLOCATED, SGAM (1:3) NOT ALLOCATED, PFS (1:1) 0x43 ALLOCATED 95_PCT_FULL



Blob Record: Page (1:136) Slot 0 Offset 96 Length 978 Type 3

TimeStamp 410696155136


5004206e: 0031005b 002f0034 00370030 0030002f [.1.4./.0.7./.0.
5004207e: 005d0033 7b565bfe 306f54c1 67080037 3.]..[V{.To07..g
5004208e: 00350032 304b65e5 767a3089 4e889001 2.5..eK0.0zv...N
5004209e: 30025b9a 000a000d 0036005b 0031002f .[.0....[.6./.1.
500420ae: 005d0032 00460051 4f1a0046 306b8b70 2.].Q.F.F..Op.k0
500420be: 30013066 7b565bfe 307353ca 30b130b9 f0.0.[V{.Ss0.0.0
500420ce: 30e530b8 30eb30fc 5b9a6c7a 307e3002 .0.0.0.0zl.[.0~0
500420de: 30c7305f 30bd30f3 306730fc 56e0771f _0.0.0.0.0g0.w.V
500420ee: 5b9a7279 70ba306e 67080037 00300032 yr.[n0.p7..g2.0.
500420fe: 000d65e5 3000000a 30003000 3067307e .e.....0.0.0~0g0
5004210e: 8a8d73fe 7d993092 30027d9a 000a000d .s...0.}.}.0....
5004211e: 0035005b 0032002f 005d0033 00460051 [.5./.2.3.].Q.F.
5004212e: 00200046 767b0031 000d9332 005b000a F. .1.{v2.....[.
5004213e: 002f0035 00300032 0043005d 00450051 5./.2.0.].C.Q.E.
5004214e: 30010043 00650044 0073006e 002d006f C..0D.e.n.s.o.-.
5004215e: 0070004a ff75006e ff72ff8a 3067ff75 J.p.n.u...r.u.g0
5004216e: 006f0047 00260020 00530020 00650065 G.o. .&. .S.e.e.
5004217e: 65bd5b9f 51683002 ff72ff7b ff99ff78 .[.e.0hQ{.r.x...
5004218e: 54c190e8 53ce56de ff833001 ff9dff9e ...T.V.S.0......
5004219e: ff70ff7f 90013078 30024ed8 000a000d ..p.x0...N.0....
500421ae: 30003000 00323000 306e4ef6 006f0047 .0.0.02..Nn0G.o.
500421be: 0053ff06 00650065 7d50306e 3001679c ..S.e.e.n0P}.g.0
500421ce: 5a9251b7 5145904e 306f586b 8a8d78ba .Q.ZN.EQkXo0.x..
500421de: 308c3055 304b306a 305f3063 ff753002 U0.0j0K0c0_0.0u.
500421ee: ff99ff72 306f91cf ff9eff83 ff7fff9d r.....o0........
500421fe: 3067ff70 67fb8abf 30024e2d 000a000d p.g0...g-N.0....
5004220e: 0035005b 0031002f 005d0039 004d0054 [.5./.1.9.].T.M.
5004221e: 004e004d 304b0041 00433089 00450051 M.N.A.K0.0C.Q.E.
5004222e: 30780043 ff9dff8a ff9eff84 ff70ff75 C.x0........u.p.
5004223e: ff9eff8a 9023ff70 66f87d61 884c767a ....p.#.a}.fzvL.
5004224e: 00433002 00450051 30010043 00650044 .0C.Q.E.C..0D.e.
5004225e: 0073006e 002d006f 0070004a ff90006e n.s.o.-.J.p.n...
5004226e: ff76ff7c ff9dff9e 00473067 0020006f |.v.....g0G.o. .
5004227e: 00200026 00650053 5b9f0065 300265bd &. .S.e.e..[.e.0
5004228e: 000a000d 30003000 51683000 ff72ff7b .....0.0.0hQ{.r.
5004229e: ff99ff78 54c190e8 53ce56de ff833001 x......T.V.S.0..
500422ae: ff9dff9e ff70ff7f 90013078 30024ed8 ......p.x0...N.0
500422be: 000a000d 0035005b 0031002f 005d0032 ....[.5./.1.2.].
500422ce: 00510043 00430045 3089304b 004d0054 C.Q.E.C.K0.0T.M.
500422de: 004e004d 00200041 00200026 004d0054 M.N.A. .&. .T.M.
500422ee: 30780053 540c5408 006f0047 00260020 S.x0.T.TG.o. .&.
500422fe: 00530020 00650065 4f9d3092 3002983c .S.e.e..0.O<..0
5004230e: 000a000d 0035005b 0031002f 005d0032 ....[.5./.1.2.].
5004231e: 004d0054 304c0053 004d0054 004e004d T.M.S.L0T.M.M.N.
5004232e: 30780041 00460051 ff110046 9332767b A.x0Q.F.F...{v2.
5004233e: 8acb8981 000d3002 005b000a 002f0034 .....0....[.4./.
5004234e: 00350032 0054005d 0053004d 3089304b 2.5.].T.M.S.K0.0
5004235e: 7b565bfe ff9b5f8c ff78ff6f 004d306e .[V{._..o.x.n0M.
5004236e: 00530049 884c767a 000d3002 0020000a I.S.zvL..0.... .
5004237e: 00200020 00200020 30530020 4ee5308c . . . . .S0.0.N
5004238e: 306b524d 004d0054 004e004d 30670041 MRk0T.M.M.N.A.g0
5004239e: 56de0032 006f0047 00530026 00650065 2..VG.o.&.S.e.e.
500423ae: 65bd5b9f ff7a3002 ff8cff9d ff9aff9f .[.e.0z.........
500423be: ff7bff6f ff6fff9b 306eff78 902088fd o.{...o.x.n0.. .
500423ce: 56e08981 30573068 ff753066 ff99ff72 ...Vh0W0f0u.r...
500423de: 5c1191cf 51b73001 904e5a92 000a000d ...\.0.Q.ZN.....
500423ee: 30003000 51453000 3092586b 8a8d78ba .0.0.0EQkX.0.x..
500423fe: 305f3057 3001304c 5b9a6e2c 5ea67cbe W0_0L0.0,n.[.|.^
5004240e: 306a304c 3001304f 56e0539f 30573068 L0j0O0.0.S.Vh0W0
5004241e: 72793066 51fa5b9a 30666765 306a3044 f0yr.[.Qegf0D0j0
5004242e: 30023044 D0.0


Blob Record: Page (1:136) Slot 1 Offset 3862 Length 436 Type 3

TimeStamp 486274957312


50042f24: 76f43010 5bfe8fd1 30117b56 000d0020 .0.v...[V{.0 ...
50042f34: 30d5000a 30fc30a9 30b730af 30d530e3 ...0.0.0.0.0.0.0
50042f44: 30fb30c8 30cb30d4 30f330aa 53165f37 .0.0.0.0.0.07_.S
50042f54: 000d0020 2460000a 30a930d5 30af30fc .....`$.0.0.0.0
50042f64: 30e330b7 30c830d5 0053ff1a 004d0043 .0.0.0.0..S.C.M.
50042f74: 00350031 8edf002b 53167a92 740651e6 1.5.+....z.S.Q.t
50042f84: 005321d2 00350031 0047002d 6d78002b .!S.1.5.-.G.+.xm
50042f94: 51e670ad 00207406 000a000d 000a000d .p.Q.t .........
50042fa4: 60523010 5bfe4e45 30117b56 000d0020 .0R`EN.[V{.0 ...
50042fb4: 30d5000a 30fc30a9 30b730af 30d530e3 ...0.0.0.0.0.0.0
50042fc4: 30e930c8 30af30c3 307890e8 5927306e .0.0.0.0..x0n0'Y
50042fd4: 91cd8377 529b5165 6e1b4f4e 000d0020 w...eQ.RNO.n ...
50042fe4: 2460000a 30bf30b9 30af30c3 306e6642 ..`$.0.0.0.0Bfn0
50042ff4: 66ff5207 6b627981 5fa15236 30b930b7 .R.f.ybk6R._.0.0
50043004: 30e030c6 7e54306e 307f8fbc 000a000d .0.0n0T~...0....
50043014: 60523010 5bfe4e45 30117b56 000d0020 .0R`EN.[V{.0 ...
50043024: 30d5000a 30fc30a9 30b730af 30d530e3 ...0.0.0.0.0.0.0
50043034: 30e930c8 30af30c3 307890e8 5927306e .0.0.0.0..x0n0'Y
50043044: 91cd8377 529b5165 6e1b4f4e 000d0020 w...eQ.RNO.n ...
50043054: 2460000a 30bf30b9 30af30c3 306e6642 ..`$.0.0.0.0Bfn0
50043064: 66ff5207 6b627981 5fa15236 30b930b7 .R.f.ybk6R._.0.0
50043074: 30e030c6 7e54306e 307f8fbc 000d0020 .0.0n0T~...0 ...
50043084: 2461000a 30cb30d4 30f330aa 6301652f ..a$.0.0.0.0/e.c
50043094: 6cd565b9 66f45909 7247ff08 30616301 .e.l.Y.f..Gr.ca0
500430a4: 4e2121d2 30616301 0020ff09 000a000d .!!N.ca0.. .....
500430b4: 30c12462 30f330e3 30a130d5 5f6290e8 b$.0.0.0.0.0..b_
500430c4: 590972b6 66f4 .r.Y.f


Blob Record: Page (1:136) Slot 2 Offset 1074 Length 84 Type 4

TimeStamp 486274957312 Level 0 MaxLinks 5 CurLinks 1 :

Page (1:136) Slot 1 Size 236



Blob Record: Page (1:136) Slot 3 Offset 1158 Length 158 Type 3

TimeStamp 395439898624


50042494: 00570034 00200044 006f0064 00730065 4.W.D. .d.o.e.s.
500424a4: 006e0020 0074006f 00650020 0067006e .n.o.t. .e.n.g.
500424b4: 00670061 002e0065 00410020 00440044 a.g.e... .A.D.D.
500424c4: 00660020 0072006f 0020006b 00650067 .f.o.r.k. .g.e.
500424d4: 00720061 00770020 00730061 00620020 a.r. .w.a.s. .b.
500424e4: 006f0072 0065006b 0020006e 006e0061 r.o.k.e.n. .a.n.
500424f4: 00200064 00740073 00630075 0020006b d. .s.t.u.c.k. .
50042504: 00740061 00690020 0073006e 00650064 a.t. .i.n.s.d.e.
50042514: 006f0020 00200066 00440041 002e0044 .o.f. .A.D.D...


Blob Record: Page (1:136) Slot 4 Offset 3280 Length 582 Type 3

TimeStamp 486275219456


50042cde: 00290031 00430020 00610068 0067006e 1.). .C.h.a.n.g.
50042cee: 00200065 00680074 00200065 0061006d e. .t.h.e. .m.a.
50042cfe: 00650074 00690072 006c0061 006f0020 t.e.r.i.a.l. .o.
50042d0e: 00200066 00680074 00200065 00440041 f. .t.h.e. .A.D.
50042d1e: 00200044 006f0046 006b0072 00730020 D. .F.o.r.k. .s.
50042d2e: 00610068 00740066 0020003a 000a000d h.a.f.t.:. .....
50042d3e: 002d002d 00530020 004e0043 00350031 -.-. .S.C.N.1.5.
50042d4e: 0020002b 006f0073 00740066 006e0020 +. .s.o.f.t. .n.
50042d5e: 00740069 00690072 00690064 0067006e i.t.r.i.d.i.n.g.
50042d6e: 00700020 006f0072 00650063 00730073 .p.r.o.c.e.s.s.
50042d7e: 006e0069 00200067 003e003d 00310053 i.n.g. .=.>.S.1.
50042d8e: 00470035 0020002b 00610063 00620072 5.G.+. .c.a.r.b.
50042d9e: 00720075 007a0069 006e0069 00200067 u.r.i.z.i.n.g. .
50042dae: 00720070 0063006f 00730065 00690073 p.r.o.c.e.s.s.i.
50042dbe: 0067006e 00200020 002d002d 002d002d n.g. . .-.-.-.-.
50042dce: 00530020 00680063 00640065 006c0075 .S.c.h.e.d.u.l.
50042dde: 00640065 006f0020 0020006e 0069006d e.d. .o.n. .m.i.
50042dee: 00200064 0061004d 00200079 00300032 d. .M.a.y. .2.0.
50042dfe: 00340030 000d002e 0032000a 00200029 0.4.......2.). .
50042e0e: 00570034 00200044 0070006f 00720065 4.W.D. .o.p.e.r.
50042e1e: 00740061 006f0069 0020006e 00790073 a.t.i.o.n. .s.y.
50042e2e: 00740073 006d0065 00630020 00610068 s.t.e.m. .c.h.a.
50042e3e: 0067006e 002e0065 002d0020 0020003e n.g.e... .-.>. .
50042e4e: 00570034 00200044 00680073 00660069 4.W.D. .s.h.i.f.
50042e5e: 00200074 00720070 00760065 006e0065 t. .p.r.e.v.e.n.
50042e6e: 00690074 006e006f 00770020 00650068 t.i.o.n. .w.h.e.
50042e7e: 0020006e 00680077 00650065 0020006c n. .w.h.e.e.l. .
50042e8e: 00730069 00730020 00690070 006e006e i.s. .s.p.i.n.n.
50042e9e: 006e0069 002d0067 002d002d 002d002d i.n.g.-.-.-.-.-.
50042eae: 00720046 006d006f 006e0020 00780065 F.r.o.m. .n.e.x.
50042ebe: 00200074 00750046 006c006c 004d0020 t. .F.u.l.l. .M.
50042ece: 0064006f 006c0065 00430020 00610068 o.d.e.l. .C.h.a.
50042ede: 0067006e 00690065 00740078 00650068 n.g.e.i.x.t.h.e.
50042eee: 00640020 00740065 00690061 0073006c .d.e.t.a.i.l.s.
50042efe: 00620020 00200079 002f0039 00300031 .b.y. .9./.1.0.
50042f0e: 0030002f 002e0033 /.0.3...


Blob Record: Page (1:136) Slot 5 Offset 1316 Length 84 Type 4

TimeStamp 486275219456 Level 0 MaxLinks 5 CurLinks 1 :

Page (1:136) Slot 4 Size 518



Blob Record: Page (1:136) Slot 6 Offset 4298 Length 274 Type 3

TimeStamp 486275350528


500430d8: 00200041 00740073 00630069 002d006b A. .s.t.i.c.k.-.
500430e8: 006c0073 00700069 00630020 006e006f s.l.i.p. .c.o.n.
500430f8: 00690064 00690074 006e006f 006f0020 d.i.t.i.o.n. .o.
50043108: 00630063 00720075 00200073 00740061 c.c.u.r.s. .a.t.
50043118: 00740020 00650068 00730020 0069006c .t.h.e. .s.l.i.
50043128: 00650064 00700020 0072006f 00690074 d.e. .p.o.r.t.i.
50043138: 006e006f 00640020 00650075 00740020 o.n. .d.u.e. .t.
50043148: 0020006f 006e0069 00750073 00660066 o. .i.n.s.u.f.f.
50043158: 00630069 00650069 0074006e 00740020 i.c.i.e.n.t. .t.
50043168: 0072006f 00690073 006e006f 006c0061 o.r.s.i.o.n.a.l.
50043178: 00730020 00720074 006e0065 00740067 .s.t.r.e.n.g.t.
50043188: 00200068 0066006f 00740020 00650068 h. .o.f. .t.h.e.
50043198: 00740020 006c0065 00730065 006f0063 .t.e.l.e.s.c.o.
500431a8: 00690070 00200063 00740073 00650065 p.i.c. .s.t.e.e.
500431b8: 00690072 0067006e 00630020 006c006f r.i.n.g. .c.o.l.
500431c8: 006d0075 0020006e 00610063 006c0062 u.m.n. .c.a.b.l.
500431d8: 002e0065 e...


Blob Record: Page (1:136) Slot 7 Offset 1400 Length 84 Type 4

TimeStamp 486275350528 Level 0 MaxLinks 5 CurLinks 1 :

Page (1:136) Slot 6 Size 260



Blob Record: Page (1:136) Slot 8 Offset 1484 Length 96 Type 3

TimeStamp 486275416064


500425da: ff70ff93 ff70ff80 52d599c6 306e7528 ..p...p....R(un0
500425ea: ff70ff79 ff9eff8c 81eaff99 306e8eab y.p...........n0
500425fa: 525b6a2a 4e0d6027 306b8db3 308a3088 *j[R'`.N..k0.0.0
5004260a: ff7d3001 ff98ff78 ff70ff6d 306b90e8 .0}.x...m.p...k0
5004261a: 75703066 304c97f3 751f767a 308b3059 f0pu..L0zv.uY0.0
5004262a: 3002 .0


Blob Record: Page (1:136) Slot 9 Offset 1580 Length 84 Type 4

TimeStamp 486275416064 Level 0 MaxLinks 5 CurLinks 1 :

Page (1:136) Slot 8 Size 82



Blob Record: Page (1:136) Slot 10 Offset 2834 Length 446 Type 3

TimeStamp 470395977728


50042b20: 002f002f 002f002f 002f002f 002f002f /./././././././.
50042b30: 002f002f 002f002f 002f002f 002f002f /./././././././.
50042b40: 002f002f 00610048 0064006e 004f0020 /./.H.a.n.d. .O.
50042b50: 00650076 00200072 006f0074 004f0020 v.e.r. .t.o. .O.
50042b60: 00530043 0054002d 00200044 002f0038 C.S.-.T.D. .8./.
50042b70: 00390031 002f0020 002f002f 002f002f 1.9. ./././././.
50042b80: 002f002f 002f002f 002f002f 002f002f /./././././././.
50042b90: 002f002f 002f002f 002f002f 002f002f /./././././././.
50042ba0: 002f002f 002f002f 002f002f 000a000d /./././././.....
50042bb0: 0030005b 002f0038 00380030 0030002f [.0.8./.0.8./.0.
50042bc0: 005d0033 8a2d0020 767a5909 3002884c 3.]. .-..YzvL..0
50042bd0: 6708ff19 65ec4e2d 52079803 300266ff ...g-N.e...R.f.0
50042be0: 000a000d 0030005b 002f0037 00310033 ....[.0.7./.3.1.
50042bf0: 0030002f 005d0033 ff793000 ff8cff70 /.0.3.]..0y.p...
50042c00: ff99ff9e 59163092 30013057 30e730b8 .....0.YW0.0.0.0
50042c10: 30f330a4 309230c8 4ed87d44 30663051 .0.0.0.0D}.NQ0f0
50042c20: 679c52b9 8a8d78ba ff2f3002 ff08ff2b .R.g.x...0/.+...
50042c30: 65e50032 0034ff0c 78ba56de ff098a8d 2..e..4..V.x....
50042c40: 000a000d 0030005b 002f0037 00300033 ....[.0.7./.3.0.
50042c50: 0030002f 005d0033 00503000 00530051 /.0.3.]..0P.Q.S.
50042c60: 306e0053 0053004c 3064306b 30663044 S.n0L.S.k0d0D0f0
50042c70: 8eca73fe 8a8d78ba 65bd5b9f ff083002 .s...x...[.e.0..
50042c80: 54689ad8 306e6ce2 30fc30af ff0997f3 ..hT.ln0.0.0....
50042c90: 000a000d 0030005b 002f0037 00380031 ....[.0.7./.1.8.
50042ca0: 0030002f 005d0033 767b3000 30029332 /.0.3.]..0{v2..0
50042cb0: 53ce56de ff1654c1 306b500b 30443064 .V.S.T...Pk0d0D0
50042cc0: ff123066 ff2bff23 90013078 30024ed8 f0..#.+.x0...N.0


Blob Record: Page (1:136) Slot 11 Offset 1664 Length 156 Type 3

TimeStamp 395440095232


5004268e: 006f0046 00630072 00200065 006e0069 F.o.r.c.e. .i.n.
5004269e: 00750070 00200074 006f0074 00660020 p.u.t. .t.o. .f.
500426ae: 0072006f 0020006b 00650067 00720061 o.r.k. .g.e.a.r.
500426be: 00660020 006f0072 0020006d 00680074 .f.r.o.m. .t.h.
500426ce: 00200065 00720066 006e0069 00200074 e. .f.r.i.n.t. .
500426de: 00690064 00660066 00720065 00630065 d.i.f.f.e.r.e.c.
500426ee: 00690074 006c0061 00770020 00650068 t.i.a.l. .w.h.e.
500426fe: 0020006e 00680073 00660069 00200074 n. .s.h.i.f.t. .
5004270e: 006f0074 00340020 00440057 002e t.o. .4.W.D...


Blob Record: Page (1:136) Slot 12 Offset 1904 Length 930 Type 3

TimeStamp 494236139520


5004277e: 00750043 00740073 006d006f 00720065 C.u.s.t.o.m.e.r.
5004278e: 00730020 00610074 00650074 00200073 .s.t.a.t.e.s. .
5004279e: 00680074 00200065 002f0041 00200043 t.h.e. .A./.C. .
500427ae: 00610074 0065006b 00200073 006f0074 t.a.k.e.s. .t.o.
500427be: 0020006f 006f006c 0067006e 00740020 o. .l.o.n.g. .t.
500427ce: 0020006f 006f0063 006c006f 00740020 o. .c.o.o.l. .t.
500427de: 00650068 00760020 00680065 00630069 h.e. .v.e.h.i.c.
500427ee: 0065006c 006f0020 0020006e 006f0068 l.e. .o.n. .h.o.
500427fe: 00200074 00610064 00730079 00280020 t. .d.a.y.s. .(.
5004280e: 0076006f 00720065 00310020 00300030 o.v.e.r. .1.0.0.
5004281e: 004600b0 002e0029 000a000d 00660041 ..F.).......A.f.
5004282e: 00650074 00200072 00700061 00720070 t.e.r. .a.p.p.r.
5004283e: 0078006f 006d0069 00740061 006c0065 o.x.i.m.a.t.e.l.
5004284e: 00200079 006e006f 00200065 006f0068 y. .o.n.e. .h.o.
5004285e: 00720075 006f0020 00200066 00640069 u.r. .o.f. .i.d.
5004286e: 0069006c 0067006e 0020002c 00680074 l.i.n.g.,. .t.h.
5004287e: 00200065 00690068 00680067 00730020 e. .h.i.g.h. .s.
5004288e: 00640069 00200065 00720070 00730065 i.d.e. .p.r.e.s.
5004289e: 00750073 00650072 00690020 0063006e s.u.r.e. .i.n.c.
500428ae: 00650072 00730061 00640065 00670020 r.e.a.s.e.d. .g.
500428be: 00610072 00750064 006c0061 0079006c r.a.d.u.a.l.l.y.
500428ce: 00740020 0020006f 00350034 00200035 .t.o. .4.5.5. .
500428de: 00730070 002e0069 00200020 00740041 p.s.i... . .A.t.
500428ee: 00340020 00350035 00700020 00690073 .4.5.5. .p.s.i.
500428fe: 0020002c 00680074 00200065 00720070 ,. .t.h.e. .p.r.
5004290e: 00730065 00750073 00650072 00730020 e.s.s.u.r.e. .s.
5004291e: 00690077 00630074 00200068 0070006f w.i.t.c.h. .o.p.
5004292e: 006e0065 00640065 00610020 0064006e e.n.e.d. .a.n.d.
5004293e: 00740020 00650068 00630020 006d006f .t.h.e. .c.o.m.
5004294e: 00720070 00730065 006f0073 00200072 p.r.e.s.s.o.r. .
5004295e: 006c0063 00740075 00680063 00640020 c.l.u.t.c.h. .d.
5004296e: 00730069 006e0065 00610067 00650067 i.s.e.n.g.a.g.e.
5004297e: 00200064 00650072 00750073 0074006c d. .r.e.s.u.l.t.
5004298e: 006e0069 00200067 006e0069 00770020 i.n.g. .i.n. .w.
5004299e: 00720061 0020006d 00690061 00200072 a.r.m. .a.i.r. .
500429ae: 00780065 00740069 006e0069 00200067 e.x.i.t.i.n.g. .
500429be: 00680074 00200065 00650076 0074006e t.h.e. .v.e.n.t.
500429ce: 002e0073 00200020 00680057 006e0065 s... . .W.h.e.n.
500429de: 00740020 00690068 00200073 006f0063 .t.h.i.s. .c.o.
500429ee: 0064006e 00740069 006f0069 0020006e n.d.i.t.i.o.n. .
500429fe: 0063006f 00750063 00730072 0020002c o.c.c.u.r.s.,. .
50042a0e: 00680074 00200065 00690068 00680067 t.h.e. .h.i.g.h.
50042a1e: 00730020 00640069 00200065 00720070 .s.i.d.e. .p.r.
50042a2e: 00730065 00750073 00650072 00670020 e.s.s.u.r.e. .g.
50042a3e: 00750061 00650067 006e0020 00650065 a.u.g.e. .n.e.e.
50042a4e: 006c0064 00200065 00690077 006c006c d.l.e. .w.i.l.l.
50042a5e: 00630020 00630079 0065006c 00620020 .c.y.c.l.e. .b.
50042a6e: 00740065 00650077 006e0065 00340020 e.t.w.e.e.n. .4.
50042a7e: 00350035 00700020 00690073 00610020 5.5. .p.s.i. .a.
50042a8e: 0064006e 00330020 00300035 00700020 n.d. .3.5.0. .p.
50042a9e: 00690073 0020002e 00540020 00690068 s.i... . .T.h.i.
50042aae: 00200073 00610067 00670075 00200065 s. .g.a.u.g.e. .
50042abe: 00610070 00740074 00720065 0020006e p.a.t.t.e.r.n. .
50042ace: 00690077 006c006c 00720020 00700065 w.i.l.l. .r.e.p.
50042ade: 00610065 00200074 00740069 00650073 e.a.t. .i.t.s.e.
50042aee: 0066006c 006d0020 006c0075 00690074 l.f. .m.u.l.t.i.
50042afe: 006c0070 00200065 00690074 0065006d p.l.e. .t.i.m.e.
50042b0e: 002e0073 s...


Blob Record: Page (1:136) Slot 13 Offset 1820 Length 84 Type 4

TimeStamp 494236139520 Level 0 MaxLinks 5 CurLinks 1 :

Page (1:136) Slot 12 Size 916



Blob Record: Page (1:136) Slot 14 Offset 4572 Length 418 Type 3

TimeStamp 446847582208


500431ea: 00780045 00610068 00730075 00200074 E.x.h.a.u.s.t. .
500431fa: 00750073 0066006c 00720075 00730020 s.u.l.f.u.r. .s.
5004320a: 0065006d 006c006c 00690020 00200073 m.e.l.l. .i.s. .
5004321a: 00650067 0065006e 00610072 00650074 g.e.n.e.r.a.t.e.
5004322a: 00200064 00680077 006e0065 00740020 d. .w.h.e.n. .t.
5004323a: 00650068 00610020 006d0074 0073006f h.e. .a.t.m.o.s.
5004324a: 00680070 00720065 00200065 0066006f p.h.e.r.e. .o.f.
5004325a: 00630020 00740061 006c0061 00730079 .c.a.t.a.l.y.s.
5004326a: 00200074 00730069 00410020 0046002f t. .i.s. .A./.F.
5004327a: 00650020 0072006e 00630069 006d0068 .e.n.r.i.c.h.m.
5004328a: 006e0065 00200074 006f0063 0064006e e.n.t. .c.o.n.d.
5004329a: 00740069 006f0069 0020006e 006e0069 i.t.i.o.n. .i.n.
500432aa: 00630020 00720065 00610074 006e0069 .c.e.r.t.a.i.n.
500432ba: 00630020 00740061 006c0061 00730079 .c.a.t.a.l.y.s.
500432ca: 00200074 00650074 0070006d 00720065 t. .t.e.m.p.e.r.
500432da: 00740061 00720075 00200065 00610072 a.t.u.r.e. .r.a.
500432ea: 0067006e 00200065 00660061 00650074 n.g.e. .a.f.t.e.
500432fa: 00200072 00680074 00200065 006f006c r. .t.h.e. .l.o.
5004330a: 00200077 00700073 00650065 00200064 w. .s.p.e.e.d. .
5004331a: 00720064 00760069 006e0069 00200067 d.r.i.v.i.n.g. .
5004332a: 006f0066 00200072 00750073 0066006c f.o.r. .s.u.l.f.
5004333a: 00720075 00740020 0020006f 00650062 u.r. .t.o. .b.e.
5004334a: 00610020 00730064 0072006f 00650062 .a.d.s.o.r.b.e.
5004335a: 00200064 00690077 00680074 006e0069 d. .w.i.t.h.i.n.
5004336a: 00630020 00740061 006c0061 00730079 .c.a.t.a.l.y.s.
5004337a: 002e0074 t...


Blob Record: Page (1:136) Slot 15 Offset 4990 Length 84 Type 4

TimeStamp 645088608256 Level 0 MaxLinks 5 CurLinks 1 :

Page (1:144) Slot 29 Size 104



Blob Record: Page (1:136) Slot 16 Offset 6424 Length 132 Type 3

TimeStamp 750221524992


50043926: 006e0049 00750073 00660066 00630069 I.n.s.u.f.f.i.c.
50043936: 00650069 0074006e 00630020 0065006c i.e.n.t. .c.l.e.
50043946: 00720061 006e0061 00650063 00660020 a.r.a.n.c.e. .f.
50043956: 006f0072 0020006d 00540041 006d0020 r.o.m. .A.T. .m.
50043966: 0075006f 0074006e 006d0020 00790061 o.u.n.t. .m.a.y.
50043976: 00640020 006d0061 00670061 00200065 .d.a.m.a.g.e. .
50043986: 00720062 006b0061 00200065 006f0068 b.r.a.k.e. .h.o.
50043996: 00650073 002e s.e...


Blob Record: Page (1:136) Slot 17 Offset 5074 Length 468 Type 3

TimeStamp 645084807168


500433e0: 0052005b 00330058 00300033 0020005d [.R.X.3.3.0.]. .
500433f0: 00700041 006c0070 00200079 00440057 A.p.p.l.y. .W.D.
50043400: 0034002d 00200030 0072006f 00650020 -.4.0. .o.r. .e.
50043410: 00750071 00760069 006c0061 006e0065 q.u.i.v.a.l.e.n.
50043420: 00200074 00720067 00610065 00650073 t. .g.r.e.a.s.e.
50043430: 00620020 00740065 00650077 006e0065 .b.e.t.w.e.e.n.
50043440: 00730020 00610065 00200074 00720074 .s.e.a.t. .t.r.
50043450: 00630061 0020006b 00610072 006c0069 a.c.k. .r.a.i.l.
50043460: 00610020 0064006e 00620020 00610072 .a.n.d. .b.r.a.
50043470: 006b0063 00740065 000d002e 005b000a c.k.e.t.......[.
50043480: 00520034 006e0075 0065006e 005d0072 4.R.u.n.n.e.r.].
50043490: 000a000d 00690057 00680074 0075006f ....W.i.t.h.o.u.
500434a0: 00200074 00690073 00650064 00610020 t. .s.i.d.e. .a.
500434b0: 00720069 00620020 00670061 0052002d i.r. .b.a.g.-.R.
500434c0: 00700065 0061006c 00650063 00740020 e.p.l.a.c.e. .t.
500434d0: 00650068 00660020 006f0072 0074006e h.e. .f.r.o.n.t.
500434e0: 00730020 00610065 00200074 00640061 .s.e.a.t. .a.d.
500434f0: 0075006a 00740073 00720065 00730020 j.u.s.t.e.r. .s.
50043500: 00620075 0061002d 00730073 00200079 u.b.-.a.s.s.y. .
50043510: 00690077 00680074 006e0020 00770065 w.i.t.h. .n.e.w.
50043520: 006f0020 0065006e 000d002e 0057000a .o.n.e.......W.
50043530: 00740069 00200068 00690073 00650064 i.t.h. .s.i.d.e.
50043540: 00610020 00720069 00620020 00670061 .a.i.r. .b.a.g.
50043550: 0020002d 00650052 006c0070 00630061 -. .R.e.p.l.a.c.
50043560: 00200065 00680074 00200065 00720066 e. .t.h.e. .f.r.
50043570: 006e006f 00200074 00650073 00740061 o.n.t. .s.e.a.t.
50043580: 00610020 00730073 00200079 00690077 .a.s.s.y. .w.i.
50043590: 00680074 006e0020 00770065 006f0020 t.h. .n.e.w. .o.
500435a0: 0065006e 002e n.e...


Blob Record: Page (1:136) Slot 18 Offset 5542 Length 106 Type 3

TimeStamp 705845198848


500435b4: 00650052 006c0070 00630061 00200065 R.e.p.l.a.c.e. .
500435c4: 00680074 00200065 002d0056 00650072 t.h.e. .V.-.r.e.
500435d4: 00620069 00650062 00200064 00650062 i.b.b.e.d. .b.e.
500435e4: 0074006c 00610020 0064006e 00620020 l.t. .a.n.d. .b.
500435f4: 006c0065 00200074 00650074 0073006e e.l.t. .t.e.n.s.
50043604: 006f0069 0065006e 002e0072 i.o.n.e.r...


Blob Record: Page (1:136) Slot 19 Offset 5648 Length 84 Type 4

TimeStamp 705845198848 Level 0 MaxLinks 5 CurLinks 1 :

Page (1:136) Slot 18 Size 92



Blob Record: Page (1:136) Slot 20 Offset 5732 Length 84 Type 4

TimeStamp 705845854208 Level 0 MaxLinks 5 CurLinks 1 :

Page (1:152) Slot 11 Size 920



Blob Record: Page (1:136) Slot 21 Offset 5816 Length 320 Type 3

TimeStamp 705845919744


500436c6: 30ea30d5 30a630fc 30a430a7 884c8d70 .0.0.0.0.0.0p.L.
500436d6: 30014e2d 30af30a2 30eb30bb 30c030da -N.0.0.0.0.0.0.0
500436e6: 309230eb 3057653e 30823066 901f6e1b .0.0>eW0f0.0.n..
500436f6: 306a3057 30023044 30af30a2 30eb30bb W0j0D0.0.0.0.0.0
50043706: 4fc295a2 5f15306e 304b3063 308a304b ...On0._c0K0K0.0
50043716: 000a000d 601d3068 30013044 30893055 ....h0.`D0.0U0.0
50043726: 30a2306b 30bb30af 30da30eb 30eb30c0 k0.0.0.0.0.0.0.0
50043736: 004f3092 002d004e 0046004f 64cd0046 .0O.N.-.O.F.F..d
50043746: 30574f5c 3068305f 308d3053 30a83001 \OW0_0h0S0.0.0.0
50043756: 30b830f3 56de30f3 304c8ee2 ff10ff17 .0.0.0.V..L0....
50043766: ff10ff10 ff50ff52 000dff4d 307e000a ....R.P.M.....~0
50043776: 4e0a3067 30026607 30d530b7 309230c8 g0.N.f.0.0.0.0.0
50043786: 30e530cb 30c830fc 30eb30e9 51653078 .0.0.0.0.0.0x0eQ
50043796: 3001308c 30703057 304f3089 308b3059 .0.0W0p0.0O0Y0.0
500437a6: 30a83068 30b830f3 56de30f3 304c8ee2 h0.0.0.0.0.V..L0
500437b6: 304c4e0b 30663063 305f6765 000d3002 .NL0c0f0eg_0.0..
500437c6: 305d000a 5f8c306e 540c3001 306b65e5 ..]0n0._.0.T.ek0
500437d6: 56deff12 8c6173fe 767a304c 3002751f ...V.sa.L0zv.u.0
500437e6: 6c17ff08 306f6e29 ff1330fc 2103ff15 ...l)no0.0.....!
500437f6: ff09 ..


Blob Record: Page (1:136) Slot 22 Offset 6136 Length 84 Type 4

TimeStamp 705845919744 Level 0 MaxLinks 5 CurLinks 1 :

Page (1:136) Slot 21 Size 306



Blob Record: Page (1:136) Slot 23 Offset 6220 Length 190 Type 3

TimeStamp 567645241344


5004385a: 002f0031 00310032 0030002f 003a0034 1./.2.1./.0.4.:.
5004386a: 00650052 00750073 0074006c 006f0020 R.e.s.u.l.t. .o.
5004387a: 00200066 00610070 00740072 00200073 f. .p.a.r.t.s. .
5004388a: 006e0069 00700073 00630065 00690074 i.n.s.p.e.c.t.i.
5004389a: 006e006f 00690020 00200073 004e0022 o.n. .i.s. .".N.
500438aa: 0020006f 00720074 0075006f 006c0062 o. .t.r.o.u.b.l.
500438ba: 00200065 006f0066 006e0075 00220064 e. .f.o.u.n.d.".
500438ca: 000d002e 0031000a 002f0030 002f0039 ......1.0./.9./.
500438da: 00330030 0055003a 006b006e 006f006e 0.3.:.U.n.k.n.o.
500438ea: 006e0077 00610020 00200074 00680074 w.n. .a.t. .t.h.
500438fa: 00730069 00740020 006d0069 002e0065 i.s. .t.i.m.e...

DBCC execution completed. If DBCC printed error messages, contact your system administrator.
Go to Top of Page

oleg308
Starting Member

8 Posts

Posted - 2005-09-28 : 14:05:13
quote:
Originally posted by paulrandal


Sorry Oleg - I was too quick to skip straight to the results and assumed you'd run a CHECKDB rather than a CHECKTABLE.

Unfortunately, you're hosed. The only thing you can do is export as much data from the database as you can but you're going to eventually hit the bad page in sysobjects. You should be able to work around it though.

You need to establish the range of object IDs (and hence tables) that are described in that page. These tables you most likely will not be able to access. Try doing a DBCC PAGE (dbname, 1, 136, 3) and posting the results in a new thread. I'll help you from there.

Thanks


Paul Randal
Dev Lead, Microsoft SQL Server Storage Engine
(Legalese: This posting is provided "AS IS" with no warranties, and confers no rights.)






Hi Paul.

DBCC PAGE (dbname, 1, 136, 3):

DBCC execution completed. If DBCC printed error messages, contact your system administrator.

Thanks for your help, I ended up importing tables from the corrupted DB into a new one just one by one.
Guess I gonna have to recreate all the SP just by selecting the text from the dbo.syscomments table.

Regards,
Oleg.
Go to Top of Page

ryanston
Microsoft SQL Server Product Team

89 Posts

Posted - 2005-09-29 : 00:59:10
Oleg, please post this to a new thread. I think we're getting things confused between you and "mememe". BTW, you'll need to turn on trace flag 3604 when using DBCC PAGE.

----------------------
Ryan Stonecipher
Developer, Microsoft SQL Server Storage Engine, DBCC
(Legalese: This posting is provided "AS IS" with no warranties, and confers no rights.)
Go to Top of Page

ryanston
Microsoft SQL Server Product Team

89 Posts

Posted - 2005-09-29 : 01:01:48
Can you please post the contents of your SQL Server error log? I think you're seeing a latch timeout of some sort when you run CHECKDB.

quote:

Last time, the error was in the page (1:1879304), but this time, the error is on the page (3:429340).



Did you change the database location between these two points? A backup/restore perhaps?

quote:

After that, I restored the failed MyDB database on another Dev server (SQL 7) and ran the same DBCC CheckDB on this Dev server. There was no error on this new Dev Server.



Was this a real backup/restore, or did you just move the MDF/LDF files? If you backed up & restored teh DB, I would have expected the backup to pick up the corrupted pages...

Thanks,


----------------------
Ryan Stonecipher
Developer, Microsoft SQL Server Storage Engine, DBCC
(Legalese: This posting is provided "AS IS" with no warranties, and confers no rights.)
Go to Top of Page

Blanchemab
Starting Member

2 Posts

Posted - 2013-06-05 : 20:38:47
unspammed
Go to Top of Page

fchenaj
Starting Member

3 Posts

Posted - 2013-10-17 : 05:56:12
unspammed
Go to Top of Page
    Next Page

- Advertisement -