How to repair MYSQL data table_PHP tutorial

WBOY
Release: 2016-07-13 17:01:05
Original
917 people have browsed it

If there is a problem with the data table, you can use the --recover --quick parameters to do the repair work:
linux#myisamchk --recover --quick tbl_name
linux#isamchk --recover --quick tbl_name
if If the above method does not solve the problem, you can remove the --quick parameter:
linux#myisamchk --recover tbl_name
linux#isamchk --recover tbl_name
If the problem still cannot be solved, you can try again. --safe_recover parameters:
linux#myisamchk --safe_recover --quick tbl_name
linux#isamchk --safe_recover --quick tbl_name

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/631175.htmlTechArticleIf there is a problem with the data table, you can use the --recover --quick parameter to repair it: linux#myisamchk - -recover --quick tbl_name linux#isamchk --recover --quick tbl_name If the above...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template