MySQL repairs the myisam table

Source: Internet
Author: User

The actual instance:

Today, I found that the website data was abnormal. I checked the database and encountered the following error when operating a table (tbl_test:

Table '. \ mydb \ tbl_test' is marked as crashed and shoshould be retried red

You can use phpmyadmin to fix the problem!

Use the myisamchk that comes with mysql as follows:

Locate the location of the error table (mysql Data in linux is usually stored in/var/lib/mysql)

Shell> cd/var/lib/mysql/mydb;

Shell> myisamchk-r q tbl_test)

If the previous step fails, execute the next step.

Shell> myisamchk-r tbl_test; (inconsistent data and indexes are deleted and re-built)

If it fails again, execute the next step.

Shell> myisamchk -- safe-recover tbl_test;

Note: Before using myisamchk, make sure that mysqld is not accessing the table to be checked. It is best to stop mysqld.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.