如何分析 mysql 数据库?
我是一名 MSSQL 资深人士,收到了一份涉及调整 mysql 数据库的工作。对于 MSSQL,只需启动数据库分析器,然后处理它收集的数据即可。我似乎找不到 mysql 类似的东西。
提前致谢
I'm an mssql veteran who's received a job that involves tuning a mysql db. with mssql it was simply a matter of firing up the db profiler and then crunching up the data it collects. I can't seem to find anything similar for mysql.
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在mysql查询工具中启用PROFILER并个人陈述。另请参阅使用新的 MySQL 查询分析器 或如何分析查询MySQL。
您还可以使用 EXPLAIN 来获取查询优化计划,但是它仅适用于 SELECT 查询。
You can enable the PROFILER in the mysql query tool and profile individual statements. Also see Using the New MySQL Query Profiler or How to profile a query in MySQL.
You can also use EXPLAIN to get the query optimization plan, but it only works for SELECT queries.