Hi, I have a record which I viewed using DBCC page command. Here is how it looks :-
Memory Dump @0x00E5C060
00000000: 30000800 01000000 02000001 001f8000 †0...............
00000010: 00d10700 0000009a 00000001 000000††††...............
Slot 0 Column 0 Offset 0x4 Length 4
col1 = 1
col2 = [Textpointer] Slot 0 Column 1 Offset 0xf Length 16
TextTimeStamp = 131137536 RowId = (1:154:0)
Here col1 is of type int
and col2 is of type ntext
.
I know that ntext
column values are stored in text page.
But I don't know how to interpret col2 info above ie
col2 = [Textpointer] Slot 0 Column 1 Offset 0xf Length 16
TextTimeStamp = 131137536 RowId = (1:154:0)
Can anybody help me understand this? Thanks