show engine innodb status顯示信息不全若何處理。本站提示廣大學習愛好者:(show engine innodb status顯示信息不全若何處理)文章只能為提供參考,不一定能成為您想要的結果。以下是show engine innodb status顯示信息不全若何處理正文
成績:
履行 show engine innodb status\G 時,顯示的信息不全,DEADLOCK相干信息太多,前面的都沒了
緣由:
這是mysql客戶真個一個bug:BUG#19825,交互式客戶端限制了輸入信息最年夜為 64KB,是以更多的信息沒法顯示。
處理方法:
處理辦法有兩種:
1. 啟用 innodb_status_file
修正 my.cnf,增長相似上面一行
innodb_status_file = 1
便可以了。
2. 啟用 innodb_monitor
mysqld在線運轉時,創立 innodb_monitor 表,便可記載相干信息到日記文件
mysql> create table innodb_monitor ( id int ) engine = innodb;
相干的信息就會輸入到 .err 日記文件裡了。