Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道,如何将 long_query_time 设置为 1 分钟。我想要在我的 slow_query_log 中运行超过 1 分钟的查询。怎么做 ?并请提供我如何重新启动 sql ?是命令 MySQL 服务重启吗??
提前致谢。普拉巴卡兰
在 my.cnf 中,添加(或更改为)
long_query_time = 60
并重新启动 mysqld (详细信息取决于您使用的操作系统以及您是否使用某些包,例如 WAMP,它有自己的“重新启动”机制。)
或者,您通过执行此命令将其设置为会话的剩余部分。(详细信息取决于您使用的客户端。)
SET long_query_time = 60