052-140

Identify two situations in which the block header grows in a data block. (Choose two.)
A.when row directories need more row entries
B.when there is row migration in the data block
C.when there is an increase in the PCTFREE value for the data block
D.when more transaction slots are required than are initially configured

块头:块头包含段类型(如表或索引)、数据块地址、表目录、行目录和事务处理插槽每个插槽的大小约为 23 字节,修改块中的行时会使用这些插槽。块头自上而下进行增长。
• 行数据:这是块中行的实际数据。行数据空间自下而上进行增长。
• 空闲空间:空闲空间位于块的中部,允许头和行数据空间在必要时进行增长。当插入新行或用更大的值更新现有行的列时,行数据会占用空闲空间。


原文地址:https://www.cnblogs.com/Babylon/p/8033210.html