Loading...

Knowledge Base

Repair crashed MySQL tables

Table corruption in MySQL is a very frequent issue. This primarily happens due to failed/forced transactions.

MySQL primary supports two type of engines MyISAM and InnoDB. It is to be noted that the repair utility provided by MySQL can only be used for tables using MyISAM. Crashed tables using InnoDB cannot be repaired using the repair tool. Now, the commands to repair tables/databases in MySQL are as follows:

mysqlcheck -A  [To check and repair all databases on the server]

 

mysqlcheck -r Database_name [where Database_name is the name of the database to be checked]

 

Another thing to be noted here is that the -r option can fix everything except unique keys that aren’t unique.

Control panels like cPanel provide an option to repair tables from the interface itself. In cPanel this can be done via cPanel >> MySQL Databases >> Modify Databases >> Check DB. However, please note that this will work for MyISAM tables only.

For any further queries, please feel free to reach out to our support team via the preferred channel

Did you find this article helpful?

 
* Your feedback is too short

Loading...