如何重置所有mysql统计信息?
我似乎找不到重置所有 mysql 统计信息的方法(显示在 phpmyadmin 的“统计信息”页面中)
我可以重置服务器流量部分,但其他所有内容都不会重置(InnoDB 统计信息、处理程序统计信息等) )。
I can't seem to find a way to reset all the mysql stats (that show in the 'Stats' page in phpmyadmin)
I can reset the Server Traffic section but everything else doesn't get reset (InnoDB stats, handler stats, etc).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个非常古老的功能请求,尚未实现:http://bugs.mysql .com/bug.php?id=22875
您可以使用“FLUSH STATUS;”命令如 http://dev.mysql.com/doc/refman 中所述/5.0/en/flush.html 但它只会重置会话统计信息,而不是全局统计信息。
This is a very old feature request, that is still not implemented: http://bugs.mysql.com/bug.php?id=22875
You can use the "FLUSH STATUS;" command as described in http://dev.mysql.com/doc/refman/5.0/en/flush.html but it will only reset session stats, not the global stats.
重新启动数据库将重置所有统计数据
PS:统计数据意味着累积结果
do a restart of database will reset all stats
PS : stat meant for cumulative results