InterviewSolution
Saved Bookmarks
| 1. |
To maintain performance of tables having variable length rows, which statement is used?(a) MAINTAIN TABLE(b) BALANCE TABLE(c) ADJUST TABLE(d) OPTIMIZE TABLE |
|
Answer» The correct option is (d) OPTIMIZE TABLE Best explanation: In the variable length rows, there is more fragmentation of the table on which many deletes or updates are performed. OPTIMIZE TABLE is run periodically to maintain performance. |
|