1. 程式人生 > >【資料庫】解決Mysql資料庫提示innodb表不存在的問題!

【資料庫】解決Mysql資料庫提示innodb表不存在的問題!

發現mysql的error.log裡面有報錯:

InnoDB: Error: Table “mysql”.“innodb_table_stats” not found. InnoDB:
Error: Fetch of persistent statistics requested for table
“hj_web”.“wechat_res” but the required system tables
mysql.innodb_table_stats and mysql.innodb_index_stats are not present
or have unexpected structure. Using transient stats instead.

那麼需重新構建mysql這個databases的5個表:

步驟:
1、登入資料庫,進入mysql庫,執行如下SQL刪除5張表
記住,一定要是drop table if exists

mysql> use mysql; mysql> drop table if exists innodb_index_stats;
mysql> drop table if exists innodb_table_stats; mysql> drop table if
exists slave_master_info; mysql> drop table if exists
slave_relay_log_info; mysql> drop table if exists slave_worker_info;

樂維提示執行完後,可以用show tables檢視一下,看錶的資料是否已經比刪除之前減少了,如果減少了,說明你成功了!

2、上一步操作完成後,停止資料庫,並進入到資料庫資料檔案所在目錄,刪除上面5個表所對應的idb檔案,如下所示:

# /etc/init.d/mysqld stop
# cd /data/mysql/data/mysql/
# ls -l *.ibd

-rw-rw---- 1 mysql mysql 98304 May 27 14:17 innodb_index_stats.ibd
-rw-rw---- 1 mysql mysql 98304 May 27 14:17 innodb_table_stats.ibd
-rw-rw---- 1 mysql mysql 98304 May 27 14:14 slave_master_info.ibd
-rw-rw---- 1 mysql mysql 98304 May 27 14:14 slave_relay_log_info.ibd
-rw-rw---- 1 mysql mysql 98304 May 27 14:14 slave_worker_info.ibd

# /bin/rm -rf *.ibd

3、重新啟動資料庫,進入到mysql庫,重建上面被刪除的表結構:
資料庫的建表指令碼在mysql軟體的安裝目錄的share目錄下或者mysql的安裝包的script目錄下,我們這裡可以find一下:

# find / -name mysql_system_tables.sql

/usr/local/mysql-5.6.29/scripts/mysql_system_tables.sql

# /etc/init.d/mysqld start
mysql> use mysql;
mysql> source /usr/local/mysql-5.6.29/scripts/mysql_system_tables.sql
mysql> show tables;
28 rows in set (0.00 sec)

再隨便desc下5個的其中一倆個表看看:

mysql> desc innodb_table_stats;
mysql> desc slave_master_info;

最後再檢視mysql的error.log日誌,
確認沒有新的報錯之後,就表示成功。

轉自
mysql資料庫提示innodb表不存在
(出處: 樂維論壇)