MySQL Variables profiling 数据库 参数变量解释及正确配置使用

本站中文解释

profiling 是MySQL的一个重要参数变量。它的作用是启用或禁用查询性能分析和信息收集功能。如果将它设置为ON,MySQL将记录有关查询执行所消耗时间及其他信息的报告到information_schema.profiling表中。

要启用或禁用profiling参数,可以执行以下查询之一以设置参数值:

— 启用profiling参数
SET profiling = 1;

— 禁用profiling参数
SET profiling = 0;

官方英文解释

profiling

If set to 0 or OFF (the default), statement
profiling is disabled. If set to 1 or ON,
statement profiling is enabled and the
SHOW PROFILE and
SHOW PROFILES statements
provide access to profiling information. See
Section 13.7.5.31, “SHOW PROFILES Statement”.

This variable is deprecated; expect it to be removed in a
future release of MySQL.

版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《MySQL Variables profiling 数据库 参数变量解释及正确配置使用》
文章链接:https://zhuji.vsping.com/283723.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。