check and repair table - Mysql Views : 258
Tagged in : Mysql
0 0
Send mail
Check the Specific table

mysql> CHECK TABLE <Table_Name>


Example:

mysql> CHECK TABLE hiox.music


In the above command the hiox is database name and music is the table name


To repair a mysql table use the below command to repair the mysql table

mysql> REPAIR TABLE <Table_Name>

Example:
mysql> REPAIR TABLE hiox.music

Repair music table in hiox DB.

By RameshKumar, On - 2010-01-27



    Login to add Comments .