我正在尝试查看运行SHOW INNODB STATUS时通常显示的缓冲池和行统计信息.
但由于某种原因,这个信息没有显示,只有很多记录锁定.
现在有人如何查看缓冲池信息?
更新
在再次阅读MySQL文档后,我注意到了这一点:
InnoDB Monitor output is limited to 64,000 bytes when produced using the SHOW ENGINE INNODB STATUS statement. This limit does not apply to output written to the server's error output.
@H_301_15@回答
我找到了我想要的答案,这里:A quest for the full InnoDB status
另外如何清除这里的僵局:How to deliberately cause a deadlock in MySQL
谢谢
最佳答案
试试这个:
SHOW ENGINE INNODB STATUS\G
@H_301_15@请看这里了解更多http://dev.mysql.com/doc/refman/5.0/en/innodb-monitors.html