日期:2014-05-18 浏览次数:20648 次
create table testtb(id int identity(1,1),col char(985)) go insert into testtb select REPLICATE('a',5) union all select REPLICATE('b',5) union all select REPLICATE('c',5) union all select REPLICATE('d',5) union all select REPLICATE('e',5) union all select REPLICATE('f',5) union all select REPLICATE('g',5) union all select REPLICATE('h',5) union all select REPLICATE('i',985) union all select REPLICATE('j',985) go alter table testtb alter column col char(1000) -- go dbcc ind(testcsdn,testtb,-1)--220 221 232 dbcc traceon(3604) dbcc page(testcsdn,1,220,1) /* DATA: Slot 0, Offset 0x60, Length 9, DumpStyle BYTE Record Type = FORWARDING_STUB Record Attributes = Memory Dump @0x4431C060 0000000: 04dd0000 00010002 00?????????????????......... Slot 1, Offset 0x69, Length 1996, DumpStyle BYTE Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Memory Dump @0x4431C069 ...... Slot 2, Offset 0x835, Length 9, DumpStyle BYTE Record Type = FORWARDING_STUB Record Attributes = Memory Dump @0x4431C835 ...... 000007C0: 20202020 20202020 200300f8 ?????????? ... DBCC 执行完毕。如果DBCC 输出了错误信息,请与系统管理员联系。 */ dbcc page(testcsdn,1,221,1) /* PAGE: (1:221) DATA: Slot 0, Offset 0x1014, Length 1996, DumpStyle BYTE Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Memory Dump @0x3432D014 00000000: 1000c907 09000000 69696969 69696969 ?.......iiiiiiii ...... ...... Slot 2, Offset 0x60, Length 2010, DumpStyle BYTE Record Type = FORWARDED_RECORD Record Attributes = NULL_BITMAP VARIABLE_COLUMNS Memory Dump @0x3432C060 00000000: 3200c907 01000000 61616161 61202020 ?.......aaaaa */
--------------------------------- -- Author : HappyFlyStone -- Date : 2009-11-30 -- Version: Microsoft SQL Server 2005 - 9.00.2047.00 (Intel X86) -- Apr 14 2006 01:12:25 -- Copyright (c) 1988-2005 Microsoft Corporation --