There is two way to repair Database Table in ‘phpMyAdmin’.
First Option
- Login to phpMyAdmin
- Choose the affected database. If you only have one database, it should choose it by default so you don’t need to do anything.
- In the main panel, you should see a list of your database tables. Check the boxes by the tables that need repair.
- At the bottom of the window just below the list of tables, there is a drop down menu. Choose “Repair Table”
This should fix your table, and let you access it again.
Second Option
You’ll need to run this command from the MySQL prompt:
1 | REPAIR TABLE tbl_name USE_FRM; |