InterviewSolution
| 1. |
Discuss Row Chaining, How Does It Happen? How Can You Reduce It? How Do You Correct It? |
|
Answer» Row CHAINING occurs when a VARCHAR2 value is updated and the length of the new value is longer than the old value and won’t FIT in the remaining BLOCK space. This results in the row chaining to another block. It can be reduced by setting the storage PARAMETERS on the table to appropriate values. It can be corrected by export and import of the EFFECTED table. Row chaining occurs when a VARCHAR2 value is updated and the length of the new value is longer than the old value and won’t fit in the remaining block space. This results in the row chaining to another block. It can be reduced by setting the storage parameters on the table to appropriate values. It can be corrected by export and import of the effected table. |
|