SQL Server 简单模式下,误删除堆表记录进行数据恢复(技术贴)
本帖最后由 zc10151 于 2013-01-17 19:20:12 编辑
很多朋友认为数据库在简单模式下,堆表误删除一条记录,是无法找回的,因为没有日志记录。其实不然,某种意义上是可以找回的,因为堆表在删除记录时,只更改了行偏移,实际数据没有被物理删除,所以利用这点,测试了下恢复数据,果然成功了,但是还有点问题没有研究出结果:除了更改偏移量,删除数据时还需要更改页眉,这点还没时间去琢磨,所以恢复数据时还要能推断出页眉的16进制对应关系,有兴趣的朋友可以分享下经验给我。
废话不多说,测试的demo如下:
测试环境:
SQL Server 2008 R2
数据库:repl_test 简单模式
测试表:test_del
测试步骤
1.创建测试表test_del,并插入测试数据。
create table test_del( a int identity,b char(10))
go
insert into test_del select 'row 1';
insert into test_del select 'row 2';
insert into test_del select 'row 3';
insert into test_del select 'row 4';
insert into test_del select 'row 5';
go
2.查看测试数据,显示正常。
3.DBCC IND命令来找到数据页id,找到数据页id:219,这个数据页存放了test_del的数据
使用dbcc page查看数据页的内容以及行偏移量
dbcc page(repl_test,1,219,1)
go
输出结果为:
DATA:
Slot 0, Offset 0x60, Length 21, DumpStyle BYTE
Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 21
Memory Dump @0x00000000120CC060
0000000000000000: 10001200 01000000 726f7720 31202020 ?........row 1
0000000000000010: 20200200 00?????????????????????????? ...
Slot 1, Offset 0x75, Length 21, DumpStyle BYTE
Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 21
Memory Dump @0x00000000120CC075
0000000000000000: 10001200 02000000 726f7720 32202020 ?........row 2
0000000000000010: 20200200 00?????????????????????????? ...
Slot 2, Offset 0x8a, Length 21, DumpStyle BYTE
Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 21
Memory Dump @0x00000000120CC08A
0000000000000000: 10001200 03000000 726f7720 33202020 ?........row 3
0000000000000010: 20200200 00?????????????????????????? ...
Slot 3, Offset 0x9f, Length 21, DumpStyle BYTE
Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 21
Memory Dump @0x00000000120CC09F
0000000000000000: 10001200 04000000 726f7720 34202020 ?........row 4
0000000000000010: 20200200 00?????????????????????????? ...
Slot 4, Offset 0xb4, Length 21, DumpStyle BYTE
Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 21
Memory Dump @0x00000000120CC0B4
0000000000000000: 10001200 05000000 726f7720 35202020 ?........row 5
0000000000000010: 20200200 00??????????????????????????&nb