How to Repair All Tables in All Databases in MySQL
November 08 2014
Assume that if you have more tables in all databases, If you could not ascertain what are the tables crashed in databases in MySQL. We can check and repaired it.
# mysqlcheck --repair --databases database_name
# mysqlcheck --repair --all-databases
or
# mysqlcheck -r database_name table_name -r root -p
enter passsword :
Comments (0)