当前位置:网站首页>Mysql.慢Sql
Mysql.慢Sql
2022-08-10 23:47:00 【闲猫】
配置开启日志记录
windows中是 my.ini 文件
linux和MacOs中是 my.cnf 文件
开启慢查询日志
5.5以上版本
slow_query_log=1
slow-query-log-file=/www/server/data/mysql-slow.log
long_query_time=1
命令开启
set global slow_query_log=1;
重启后失效,最好放在配置文件中。
开启验证
SHOW VARIABLES LIKE '%slow_query_log%';
慢查询判定时间
SHOW VARIABLES LIKE 'long_query_time%';
可重新设置,这种设置Mysql重启后就失效了。
set global long_query_time=3;
查看慢查询出现了多少次
show global status like '%Slow_queries%';
测试验证
select sleep(11);
日志位置
慢Sql日志:
分析慢查询日志
直接分析慢查询日志,
mysql使用explain + sql语句进行模拟优化器来执行分析。
oracle使用explain plan for + sql语句进行模拟优化器来执行分析。
边栏推荐
- Design and Realization of Employment Management System in Colleges and Universities
- 5. Lombok
- 回收站的文件删了怎么恢复,回收站文件恢复的两种方法
- [Excel知识技能] 将“假“日期转为“真“日期格式
- How to quickly grasp industry opportunities and introduce new ones more efficiently is an important proposition
- 9. Rest 风格请求处理
- 10. 接收参数相关注解
- 【C语言】猜数字游戏的实现
- [C Language Chapter] Detailed explanation of bitwise operators (“<<”, “>>”, “&”, “|”, “^”, “~”)
- 特殊类与类型转换
猜你喜欢
15. Interceptor - HandlerInterceptor
2. 依赖管理和自动配置
Is there a way out in the testing industry if it is purely business testing?
Excel English automatic translation into Chinese tutorial
10. Notes on receiving parameters
[Excel知识技能] 将“假“日期转为“真“日期格式
22年全国程序员1月薪资出炉,才知道年薪 40 万以上的有这么多?
[C Language Chapter] Detailed explanation of bitwise operators (“<<”, “>>”, “&”, “|”, “^”, “~”)
【C语言】初识指针
【C语言】二分查找(折半查找)
随机推荐
2022下半年软考「高项」易混淆知识点汇总(2)
App regression testing, what are the efficient testing methods?
服务器小常识
花环灯问题
[21天学习挑战赛——内核笔记](五)——devmem读写寄存器调试
C language, operators of shift operators (> >, < <) explanation
英文文献阅读时,如何做笔记?
缓存知识总结
11. 自定义转换器
Web-based meal ordering system in epidemic quarantine area
6.0深入理解MySQL事务隔离级别与锁机制
【C语言篇】表达式求值(隐式类型转换,算术转换)
Geogebra 教程之 01 什么是Geogebra,真的可以提高我们数学水平么?
CF1286E-Fedya the Potter Strikes Back【KMP,RMQ】
call,apply,bind指定函数的this指向详解,功能细节,严格和非严格模式下设定this指向
15. Interceptor - HandlerInterceptor
I caught a 10-year-old Ali test developer, and after talking about it, I made a lot of money...
多语种翻译-多语种翻译软件免费
进程和线程
基于Web的疫情隔离区订餐系统