MYSQL is marked as crashed and should be repaired解决办法
发布:smiling 来源: PHP粉丝网 添加日期:2014-10-12 15:28:13 浏览: 评论:0
问题分析:错误产生原因,有网友说是频繁查询和更新[数据表]表造成的索引错误,因为我的页面没有静态生成,而是动态页面,因此比较同意这种说法。还有说法为是MYSQL数据库因为某种原因而受到了损坏,如:数据库服务器突发性的断电、在提在数据库表提供服务时对表的原文件进行某种操作都有可能导致MYSQL数据库表被损坏而无法读取数据。总之就是因为某些不可测的问题造成表的损坏。
解决办法:修复如下在你的mysql/bin下面找到myisamchk,在命令行中输入:
myisamchk -c -r d:mysqldataabc.MYI
即可.
国外参考:
- myisamchk
- /etc/init.d/mysql stopDann kann man sich mit dem Brachial-Tool ans Werk machen:
- hist-web:/var/lib/mysql/wsu# myisamchk smt_stats.MYI
- Checking MyISAM file: smt_stats.MYI
- Data records: 139144 Deleted blocks: 0
- myisamchk: warning: Table is marked as crashed
- - check file-size
- myisamchk: error: Size of datafile is: 10473472 Should be: 10473480
- - check record delete-chain
- - check key delete-chain
- - check index reference
- - check data record references index: 1
- myisamchk: error: Found 139145 keys of 139144
- - check record links
- myisamchk: error: Recordlink that points outside datafile at 10473420
- MyISAM-table 'smt_stats.MYI' is corrupted
- Fix it using switch "-r" or "-o"Ich tat, wie mir befohlen wurde:
- hist-web:/var/lib/mysql/wsu# myisamchk -r smt_stats.MYI
- - recovering (with sort) MyISAM-table 'smt_stats.MYI'
- Data records: 139144
- - Fixing index 1
- Found block that points outside data file at 10473420Zur Sicherheit überprüfte ich die Tabelle erneut:
- hist-web:/var/lib/mysql/wsu# myisamchk smt_stats.MYI
- Checking MyISAM file: smt_stats.MYI
- Data records: 139144 Deleted blocks: 0
- - check file-size --phpfensi.com
- - check record delete-chain
- - check key delete-chain
- - check index reference
- - check data record references index: 1
- - check record linksDa alles wieder rosig aussah, konnte man MySQL wieder hochfahren:
- /etc/init.d/mysql start
Tags: marked crashed should repaired
相关文章
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)