Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>try <a href="http://www.softwareprojects.com/resources/programming/t-how-to-fix-mysql-database-myisam-innodb-1634.html" rel="nofollow">repair</a> table , another good <a href="http://www.thegeekstuff.com/2008/09/how-to-repair-corrupted-mysql-tables-using-myisamchk/" rel="nofollow">article</a></p> <hr> <p>The relevant section from the first link:</p> <blockquote> <p>MySQL database allows you to define a different MySQL storage engine for different tables. The storage engine is the engine used to store and retrieve data. Most popular storage engines are MyISAM and InnoDB.</p> <p>MyISAM tables -will- get corrupted eventually. This is a fact of life.</p> <p>Luckily, in most cases, MyISAM table corruption is easy to fix.</p> <p>To fix a single table, connect to your MySQL database and issue a:</p> <pre><code>repair TABLENAME </code></pre> <p>To fix everything, go with: </p> <pre><code>/usr/local/mysql/bin/mysqlcheck --all-databases -uUSERNAME -pPASSWORD -r </code></pre> <p>A lot of times, MyISAM tables will get corrupt and you won't even know about it unless you review the log files. </p> <p>I highly suggest you add this line to your /etc/my.cnf config file. It will automatically fix MyISAM tables as soon as they become corrupt:</p> <pre><code>[mysqld] myisam-recover=backup,force </code></pre> <p><a href="http://www.softwareprojects.com/resources/programming/t-how-to-fix-mysql-database-myisam-innodb-1634.html" rel="nofollow">http://www.softwareprojects.com/resources/programming/t-how-to-fix-mysql-database-myisam-innodb-1634.html</a></p> </blockquote>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload