Every so often I get an error saying one of my tables "is marked as crashed and should be repaired". I then do a REPAIR TABLE and repair it. What causes them to be marked as crashed and how can I prevent it? I am using MyISAM tables with MySQL 5.0.45.
|
|
There can be a few reasons tables get corrupted, it is discussed in detail in the manual. To combat it, the following things work best:
|
||
|
|
|
Usually, it happens when the database is not shut down properly, like a system crash, or hardware problem. |
||
|
|
|
|
I used to get errors from mysql just like you. I solved my problems in this way 1) Convert to all myisam tables to InnoDB (you can search "myisam vs InnoDB" in stackoverflow.com and search engines to find out why) 2) For getting best performance from MySQL, use a third-party program MONyog (MySQL Monitor and Advisor) and check performance tips These two steps saved me. I hope these also help you lot. |
||
|
|
|
|
It could be many things, but MySQL Performance Blog mentions bad memory, OS or MySQL bugs that could cause hidden corruption. Also, that and another article mention several things to keep in mind when doing crash recovery. |
||
|
|
