MYSQL 多图快速助力

我一口气看完了这一系列3篇关于MYSQL的教程,从入门到进阶;
说实在的,对于MYSQL,我重未完整性地阅读过一本书;
理解select、delete、update诸如此类的命令都是实操过程中,各种搜索引擎临时性地解惑得来的;并没有系统性地理解和掌握;
而在该系列教程,MYSQL基础、进阶甚至起飞阶段,让我对MYSQL有了一次快速的、全面性的基础理解;
诸如基础定义(DDL、DML、DCL、DQL)、聚合、数据类型(针对数据类型,我推荐阅读《CPrimer Plus(第6版)》,如果没有,可以评论区留下您的邮箱)、函数使用等等,于教程中一目了然;
在进阶部分,有针对数据类型的详细阐述,还有存储引擎的特性说明、数据类型的进一步对比,特别是索引部分,这在以前我都没有碰过!
起飞阶段里的事务和锁机制,是提升自己对MYSQL深度掌握并不可少的一部分;

以上可能并不是如我所概括的全貌,还是推荐给大家,以窥究竟吧!
Continue reading MYSQL 多图快速助力

有效恢复MYSQL受损数据

突然断电,重启后导致个人电脑中的wordpress数据库受损;
此数据是在本地经过很长一段时间的录入、维护的,而且在本地从末因断电或其他原因导致的数据损坏,故没有备份。所以很心塞!

故障从wamp(wamp server 2.5)服务无法正常启动开始,查apache错误日志和mysql日志以及计算机事务日志,找到关键提示:

InnoDB: We do not continue the crash recovery, because the table may become
InnoDB: corrupt if we cannot apply the log records in the InnoDB log to it.
InnoDB: To fix the problem and start mysqld:
InnoDB: 1) If there is a permission problem in the file and mysqld cannot
InnoDB: open the file, you should modify the permissions.
InnoDB: 2) If the table is not needed, or you can restore it from a backup,
InnoDB: then you can remove the .ibd file, and InnoDB will do a normal
InnoDB: crash recovery and ignore that table.
InnoDB: 3) If the file system or the disk is broken, and you cannot remove
InnoDB: the .ibd file, you can set innodb_force_recovery > 0 in my.cnf
InnoDB: and force InnoDB to continue crash recovery here.
2016-08-19 09:26:26 5488 [Note] Plugin ‘FEDERATED’ is disabled.

原因是mysql发生crash错误导致无法恢复而引起的wamp启动失败!
Continue reading 有效恢复MYSQL受损数据