首页
编程随笔
Java笔记
Html/Css/Js
Android
后端笔记
服务器搭建
BUG收集
Java异常
Android异常
在线工具
Json格式化
编码/解码
Epub在线编辑
登录
发布文章
个人文章
退出登录
首页
技术教程
BUG收集
在线工具
资源下载
登录
发布文章
退出登录
搜索
当前位置:
首页
-
博客
- 正文
关闭
mysql show profile 性能分析工具
更新时间:2023-04-30 10:20:15
阅读数:725
发布者:落幕
使用profile之前,我们先要开启profiling,默认该参数是关闭的,我们可以会话级别设置开启来进行临时测试。 ```sql show variables like 'profiling'; ``` 结果: ```txt Variable_name Value profiling OFF ``` 开启profile ```sql set session profiling = 1; ``` 查看profile ```sql show profiles; ``` ```sql # 查看当前所有在history size(当前为15)的语句执行花费 show variables like 'profiling_history_size'; show profile for query 1; show profile for query 1 limit 1; show profile for query 1 limit 1 offset 2; show profile cpu; ```