Row Chaining and Migrating(六)

tsinglee發表於2007-08-06

In two circumstances, the data for a row in a table may be too large to fit into a single
data block. the first is case, the row is too large to fit into one data block when it is first
inserted. In this case, Oracle stores the data for the row in a chain of data blocks (one
or more) reserved for that segment.Row chaining most often occurs with large rows such as long ,long raw ,unavoidable.

thsi second is a row that originally fit into one data block is updated so
that the overall row length increases, and the block’s free space is already completely
filled. In this case, Oracle migrates the data for the entire row to a new data block,
assuming the entire row can fit in a new block.The rowid of a migrated row does not change.

When a row is chained or migrated, I/O performance associated with this row decreases.

my question :

1 what's row piece

2 why i/o performance decreases(the last sentence)

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10599713/viewspace-932234/,如需轉載,請註明出處,否則將追究法律責任。

相關文章