Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3214972
  • 博文数量: 710
  • 博客积分: 14546
  • 博客等级: 上将
  • 技术积分: 6738
  • 用 户 组: 普通用户
  • 注册时间: 2007-03-30 10:20
文章分类

全部博文(710)

文章存档

2016年(1)

2014年(7)

2013年(22)

2012年(227)

2011年(322)

2009年(119)

2008年(12)

分类: Mysql/postgreSQL

2011-12-05 20:01:02

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。


有待研究










阅读(2906) | 评论(3) | 转发(2) |
0

上一篇:iftop工具

下一篇:linux共享内存段

给主人留下些什么吧!~~

syxian2011-12-14 15:19:39

两种选择!看具体情况了!

syxian2011-12-14 15:19:32

我要去水立方: 先停服务后修复!.....
两种选择!看具体情况了!

我要去水立方2011-12-08 00:54:31

先停服务后修复!