tosp=0x
0xe:pti[0] nrow=1 offs=0
0x12:pri[0] offs=0x
block_row_dump:
tab 0, row 0, @0x
tl: 6 fb: --h-fl-- lb: 0x1 cc: 1
col 0: [ 2] c1 02
end_of_block_dump
end dump data blocks tsn: 34 file#: 23 minblk 34 maxblk 34
对其中的一些信息做一些解释:
fb:h是指行记录的头,l是指行记录的最后一列,f是指行记录的第一列。
cc:列的数量
nrid:对于行链接或者行迁移来说的下一个row id的值
由上面的dump信息我们可以看出来当前表test是没有行链接或者行迁移的。
然后更新test表,并重新dump出来:
sql> update test set a='test',b='test',c='test',d='test',e='test' where x=1;
1 row updated.