Which of the following utilities would you run to order data and reclaim space from deleted rows in a table:
-
db2look
-
db2move
-
reorg
-
runstats
C
Correct answer
Explanation
The REORG utility is specifically designed to reorganize table data, reclaiming space from deleted rows and improving access patterns by physically reordering data on disk. db2look is for DDL extraction, db2move is for data movement/export/import, and runstats is for updating table statistics used by the query optimizer. REORG is the correct tool for the stated purpose of space reclamation through data reorganization.