mysql表修复

780阅读 0评论2011-12-08 我要去水立方
分类:

1.1命令myisamchk(必须停掉mysql服务,或者所操作的表处于不活动状态)。(测试OK)
  1. [mysql@webdb01 ~]$myisamchk -r mytable.MYI
  2. myisamchk [OPTIONS] tables[.MYI]
  3.   -o, --safe-recover  Uses old recovery method; Slower than '-r' but can
                          handle a couple of cases where '-r' reports that it
                          can't fix the data file.
1.2命令mysqlcheck(mysql服务可以处于运行状态)。(没测试)
  1. [mysql@webdb01 ~]$mysqlcheck mydatabase mytable
  2. Usage:
  3. mysqlcheck [OPTIONS] database [tables]
  4. OR mysqlcheck [OPTIONS] --databases DB1 [DB2 DB3...]
  5. OR mysqlcheck [OPTIONS] --all-databases

2.修复表。(测试OK)
  1. mysql> REPAIR TABLE mytable;

1.1,2测试OK。


有待研究










上一篇:ASM中增加CONTROLFILE
下一篇:Set命令整理