To repair a corrupted MySQL database table, simply do the following steps:

a)     Login to your MySQL server using Secure Shell (SSH).

b)     Enter the following command at root prompt:

mysqlcheck -r [database name]

Where, mysqlcheck is the command to check the database, -r is the command to repair the corrupted tables. Replace the [database name] with your actual database name.

Please note that MyISAM is a default storage engine of MySQL, unless you change it. Mostly MyISAM is set as default engine to check and repair all the tables in the mysql database.

If the above doesn’t work, then you can try the following commands via the Linux shell prompt.

myisamchk -r /var/lib/mysql/[database name]/*

Where, myisamchk is a command to check mysql database and -r is a command to repair the corrupted tables.

Leave a Reply

Your email address will not be published. Required fields are marked *