脚踏实地、勇往直前!
全部博文(1005)
发布时间:2017-05-31 18:57:28
问题:2017-05-31T10:31:05.945111Z 0 [Note] InnoDB: Need to create a new innodb_system data file 'ibdata2'.2017-05-31T10:31:05.945126Z 0 [Note] InnoDB: Need to create a new innodb_system data file 'ibdata3'.2017-05-31T10:31:05.945131Z 0 [Note] InnoDB: Need to create a new innodb_system data file 'i.........【阅读全文】
发布时间:2017-02-09 09:37:40
之前在做主从的时候,主库上的一个event没有同步过来,现在在主库上删除那个event的时候,从库上报如下错误:mysql> show slave status \G;*************************** 1. row *************************** Slave_IO_State: Waiting for master to send event&.........【阅读全文】
发布时间:2016-12-13 16:00:58
mysql版本:社区版5.6.34告警信息:2016-12-13 15:55:11 4bc8b940 InnoDB: Error: Table "mysql"."innodb_table_stats" not found.2016-12-13 15:55:11 4bc8b940 InnoDB: Recalculation of persistent statistics requested for table "chenli"."cp_tb_test" but the required persistent statistics storage is not pr.........【阅读全文】
发布时间:2016-12-10 20:24:23
版本:5.7.11引擎:innodb物理删除表文件的恢复办法:1.创建一个跟删除表结构一样的表(前提是要知道被删除表的结构)mysql> create table tb_t2(id int);Query OK, 0 rows affected (0.04 sec)2.拷贝表结构文件[mysql@host02 hxl]$ cp -a tb_t2.frm tb_t1.frm[mysql@host02 hxl]$ ls -altotal 204drwxr-x--- 2 my.........【阅读全文】
发布时间:2016-12-10 18:31:16
版本:5.7.11mysql> flush privileges;ERROR 1146 (42S02): Table 'mysql.servers' doesn't existmysql> use mysql;Database changedmysql> mysql> mysql> mysql> create table servers ( -> server_name char(64) not null, -> host char(64) not null, .........【阅读全文】