1.

How To Repair A Table In Mysql ?

Answer»

To repair a table in MYSQL you NEED to USE the following QUERY

  1. REPAIR TABLE {table name}
  2. REPAIR TABLE {table name} QUICK / EXTENDED
  3. MySQL will do a repair of only the index tree, If QUICK is GIVEN
  4. MySQL will create index row by row, If EXTENDED is given.

To repair a table in MySQL you need to use the following query: 



Discussion

No Comment Found