For this suggestion:
Run OPTIMIZE TABLE to defragment tables for better performance
Run this command:
Code:
mysqlcheck -u root --auto-repair --optimize --all-databases
You can usually fix the table by issuing:
Code:
mysqlcheck -A -r -p
Restart MYSQL Server:
/etc/init.d/mysql restart