What is the difference between chained and migrated rows? Also what query should be used to display these rows? (I'm using Oracle 11gR2 database)
|
Chained and Migrated Rows are explained in the Logical Storage Structures of the Concepts Guide. A migrated row would be a row who's column data was completely transferred from one block to another due to an update. The original block would essentially only have a "forwarding address" stored for that row. A chained row would have parts of its column data in multiple blocks. The original block would contain both actual column data and a forwarding address for the rest of it. (You can get rows chained to more than two blocks.) Both are implemented the same way deep down, so they're really two aspects of the same thing. Also note that for tables with more than 255 columns, all rows are technically chained - one "row piece" can only contain 255 column values. The chaining can happen in the same block, or with other blocks depending on space availability (and isn't particularly "bad" if all the data ends up in the same block). The only way, as far as I know, to get accurate data on row chaining is to use:
See Listing Chained Rows of Tables and Clusters. This is potentially expensive, the whole table needs to be scanned. Statistics gathering doesn't fill the You can monitor the The Secrets of Oracle Row Chaining and Migration has interesting information about chained and migrated rows, how you measure them, and potential ways of fixing them. 1 From Statistics Descriptions:
See also Table Fetch by Continued Row. |
||||
|
|
