mysql显示innodb状态输出

前端之家收集整理的这篇文章主要介绍了mysql显示innodb状态输出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试查看运行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.

回答
我找到了我想要的答案,

这里:A quest for the full InnoDB status

另外如何清除这里的僵局:How to deliberately cause a deadlock in MySQL

谢谢

最佳答案
试试这个:

SHOW ENGINE INNODB STATUS\G

请看这里了解更多http://dev.mysql.com/doc/refman/5.0/en/innodb-monitors.html

原文链接:https://www.f2er.com/mysql/433169.html

猜你在找的MySQL相关文章