我试图查看运行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
关于mysql - mysql显示innodb状态输出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10741718/