There are any number of ways that a table can become corrupt, but the most common ways are a disconnect while writing to the table or, simply, the MySQL server dropping unexpectedly.
Honestly, the myisamchk -r may be doing this, as well – if this is run at the same time as the table is being modified by something else, it will corrupt the table.
Answer #1
There are any number of ways that a table can become corrupt, but the most common ways are a disconnect while writing to the table or, simply, the MySQL server dropping unexpectedly.
Honestly, the myisamchk -r may be doing this, as well – if this is run at the same time as the table is being modified by something else, it will corrupt the table.