MySQL Repair Table

From D3xt3r01.tk
Revision as of 16:22, 1 August 2009 by Admin (talk | contribs) (New page: ==WHAT== I got a table marked as crashed, don't ask how or why, I don't know. Here's what I did to fix it ==HOW== When doing <source lang="mysql"> check table blabla_bla; </source> ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

WHAT

I got a table marked as crashed, don't ask how or why, I don't know. Here's what I did to fix it

HOW

When doing

  check table blabla_bla;

I got

 Table 'blabla_bla' is marked as crashed and should be repaired.

So the next action was

  repair table blabla_bla;

And that's it !