|
|
check and repair table - Mysql
|
Views : 258
|
|
Tagged in : Mysql
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
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 |
|
|
|