QuestionQ161
PerformanceYou use the InnoDB engine, with the innodb_file_per_table option enabled.
You delete a substantial number of rows from a large table named FACTORY.INVENTORY.
You must now reorganize the physical storage of the table data and its associated index data for the INVENTORY table to reduce storage space and improve I/O efficiency.
Which command accomplishes this?
- A mysqlcheck -u root -p FACTORY.INVENTORY
- B ANALYZE TABLE FACTORY.INVENTORY
- C CHECK TABLE FACTORY.INVENTORY
- D OPTIMIZE TABLE FACTORY.INVENTORY
- E mysqldump -u root -p FACTORY INVENTORY
Community Discussion