码迷,mamicode.com
首页 > 数据库 > 详细

mysqldump表损坏问题

时间:2014-11-09 08:37:40      阅读:417      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   sp   strong   数据   on   art   问题   


遇到的问题:
mysqldump: Error 1194: Table ‘user‘ is marked as crashed and should be repaired when dumping table `user` at row: 1161435

登陆到数据库:
mysql> select count(*) from user;
+----------+
| count(*) |
+----------+
|  1840589 | 
+----------+
1 row in set (0.00 sec)
mysql> repair table user;
+--------------+--------+----------+------------------------------------------------+
| Table        | Op     | Msg_type | Msg_text                                       |
+--------------+--------+----------+------------------------------------------------+
| txtotal.user | repair | warning  | Number of rows changed from 1840589 to 1161435 | 
| txtotal.user | repair | status   | OK                                             | 
+--------------+--------+----------+------------------------------------------------+
2 rows in set (50.04 sec)
mysql> select count(*) from user;        
+----------+
| count(*) |
+----------+
|  1161435 | 
+----------+
1 row in set (0.20 sec)
mysql> check table  user;        
+--------------+-------+----------+----------+
| Table        | Op    | Msg_type | Msg_text |
+--------------+-------+----------+----------+
| txtotal.user | check | status   | OK       | 
+--------------+-------+----------+----------+
1 row in set (15.05 sec)

数据表已经修复完成,只是记录从原来的1840589 条减少到了1161435 条,不是太清楚还有没有更好的方法去实现修复。


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/38871/showart_1996523.html

mysqldump表损坏问题

标签:blog   http   ar   sp   strong   数据   on   art   问题   

原文地址:http://www.cnblogs.com/L-H-R-X-hehe/p/4084404.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!