"mysql"."innodb_table_stats" not found 故障解决

故障描述

"mysql"."innodb_table_stats" 表不存在
"mysql"."innodb_index_stats" 表不存在
"mysql"."slave_master_info" 表不存在
"mysql"."slave_relay_log_info" 表不存在
"mysql"."slave_worker_info" 表不存在

故障解决

Drop table mysql.innodb_table_stats
Drop table mysql.innodb_index_stats
Drop table mysql.slave_master_info
Drop table mysql.slave_relay_log_info
Drop table mysql.slave_worker_info Use mysql
重建表 select concat('analyze table ',table_schema,'.',table_name,';') from information_schema.tables
where table_schema not in ('mysql','test','information_schema','performance_schema'); 执行analyze table 语句,将统计信息生成至
mysql.innodb_table_stats
Mysql.innodb_index_stats
上一篇:打开一个activity,让edittext不获得焦点


下一篇:一次线上GC故障解决过程记录