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.


数据运维技术 » MySQL Variables profiling 数据库 参数变量解释及正确配置使用