`

Unknown system variable ‘profiling’

阅读更多
http://bugs.mysql.com/bug.php?id=40542
http://dev.mysql.com/doc/refman/5.1/en/news-5-1-28.html

[6 Nov 2008 10:20] Shane Bester

Description:
According to the 5.1.28 change history, profiling feature should be included.
Solaris build contained the feature, but not windows build:

on windows 5.1.28:
mysql> set profiling=1;
ERROR 1193 (HY000): Unknown system variable 'profiling'
mysql> show global variables like '%profil%';
Empty set (0.00 sec)

on solaris 5.1.28:

mysql> show global variables like '%profil%';
+------------------------+-------+
| Variable_name          | Value |
+------------------------+-------+
| profiling              | ON    |
| profiling_history_size | 15    |
+------------------------+-------+

How to repeat:
http://dev.mysql.com/doc/refman/5.1/en/news-5-1-28.html

"Added the SHOW PROFILES and SHOW PROFILE statements to display statement profile data"

"These options are enabled by default;"...

set profiling=1;


Suggested fix:
windows is a major platform, and this feature must be implemented/built in these builds.

[6 Nov 2008 10:44] Valeriy Kravchuk

Verified with 5.1.29 also:

C:\Program Files\MySQL\MySQL Server 5.0\bin>mysql -uroot -proot -P3310 test
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.29-rc-community MySQL Community Server (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> set profiling=1;
ERROR 1193 (HY000): Unknown system variable 'profiling'
mysql> show global variables like '%profil%';
Empty set (0.16 sec)

mysql> show profile;
ERROR 1289 (HY000): The 'SHOW PROFILE' feature is disabled; you need MySQL built
 with 'enable-profiling' to have it working
mysql>


分享到:
评论

相关推荐

    Geographic Profiling of Terrorist Attacks

    Through the use of a computerized geographic profiling system and two case studies, this chapter examines the applicability of geographic profiling in the context of terrorist attacks. The findings of...

    Profiling all paths

    ### Profiling All Paths: A Comprehensive Approach to Dynamic Program Analysis #### Introduction In the realm of software engineering and dynamic program analysis, path profiling is a technique that ...

    PyPI 官网下载 | pandas-profiling-2.0.3.tar.gz

    《PyPI官网下载 | pandas-profiling-2.0.3.tar.gz:深度解析与应用》 在Python的数据分析领域,pandas库无疑是不可或缺的一部分。为了进一步提升数据分析的效率和质量,开发者们创建了一系列与pandas集成的扩展工具...

    pandas-profiling-master.zip

    **Pandas-Profiling** 是一个非常实用的Python库,主要应用于数据分析领域,它为用户提供了一种快速生成数据探索报告的方式。这个库基于流行的Pandas DataFrame对象,旨在简化数据预处理阶段的工作,帮助数据科学家...

    criminal profiling

    犯罪侧写(Criminal Profiling)作为一种分析犯罪现场遗留线索以获取犯罪嫌疑人信息的方法,在近年来引起了公众广泛关注。这种关注不仅体现在大众媒体中对犯罪侧写的频繁提及,如电影《沉默的羔羊》、电视剧《千禧年...

    mysql profiling

    首先,为了启用Query Profiler,你需要在MySQL客户端执行`set profiling=1`命令。这将激活查询分析功能,从这一刻起,MySQL会记录所有执行的查询的详细信息。 在Query Profiler启用后,你可以执行任意查询,例如`...

    Profiling Python

    ### Python Profiling详解 在开发过程中,为了提升代码性能,我们常常需要对程序进行优化。而优化的关键之一就是了解程序的执行效率问题所在。这就引出了一个重要的概念——**代码剖析**(Profiling)。本文将从给定...

    The Mathematics of Geographic Profiling

    地理剖绘(Geographic Profiling)是一种犯罪分析技术,主要用于估计连环犯罪者的“锚点”位置——通常指犯罪者的居住地或工作地点等固定活动场所。该方法通过分析一系列犯罪现场的位置来推断犯罪者的潜在活动范围。...

    Linux Profiling at Netflix.pdf

    在这个背景下,"Linux Profiling at Netflix"探讨了如何利用perf_events(也称为"perf")进行高效的性能分析。 1. 为什么需要Linux性能分析? Linux性能分析的主要目标是快速全面地理解CPU使用情况。Netflix使用...

    mysql优化(1)show命令 慢查询日志 explain profiling

    在本篇中,我们将聚焦于三个MySQL优化工具:`SHOW`命令、慢查询日志和`EXPLAIN`与`PROFILING`。 一、SHOW命令 `SHOW`命令是MySQL中的一个非常实用的工具,用于获取数据库系统的信息。它可以帮助我们查看数据库的...

    Profiling and Testing with Test and Performance Tools Platform.pdf

    《Profiling and Testing with Test and Performance Tools Platform》是一份由IBM Canada的Eugene Chan和Jonathan West共同撰写的文档,主要介绍了TPTP(Test and Performance Tools Platform)平台的配置步骤及其...

    pandas-profiling-master.rar

    生成数据报告的安装包pandas-profiling,当使用命令直接下载,通常会网络超时,导致不能正常安装,此时可以下载这里的文件,具体操作见博客,https://blog.csdn.net/christineNAN/article/details/105

    Geographic Profiling

    ### 地理剖绘(Geographic Profiling) 地理剖绘是一种犯罪分析技术,它通过研究犯罪行为的空间模式来预测犯罪者的最可能居住地或活动基地。这种方法基于一系列假设,包括犯罪者在实施犯罪时通常会选择靠近自己住所...

    Python库 | pandas-profiling-3.1.0.tar.gz

    资源分类:Python库 所属语言:Python 资源全名:pandas-profiling-3.1.0.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    Python-profiling一个交互式Python性能分析工具

    1. **安装**:首先,你需要使用pip安装这个库,命令通常是`pip install profiling`。 2. **导入模块**:在Python代码中,导入`profilng`模块,然后使用`cProfile`子模块进行性能分析。 ```python import cProfile ...

    real_time_trace_profiling.pdf

    根据提供的文件内容,本文将详细介绍大尺寸内存实时跟踪技术中的Trace Streaming和实时特性描绘(Real Time Profiling)的概念、用途以及配置方法。 首先,实时跟踪技术是现代软件开发和调试过程中的重要组成部分。...

    sopc中的FOFImemory技术手册,Profiling模式的使用

    在嵌入式系统设计中,SOPC(System on a Programmable Chip)是一种广泛应用的集成化解决方案,它将数字信号处理器、微控制器、存储器和其他逻辑组件集成到单个可编程芯片上。在SOPC系统中,FOFI (Fast On-chip ...

    Geographic Profiling: Hype or Hope?

    Strategic information management system used to assist in investigations into serial crimes First commercial software created by Kim D. Rossmo Analyzes crime locations to determine the most probable ...

    Transcriptional Profiling of Class A Rice Heat Stress Transcription Factors

    12个A族水稻热激转录因子基因的表达模式,刘爱玲,陈信波,热激转录因子(Hsfs)是热激反应的主要调控因子,对热激反应的调节起着重要的作用。本研究利用半定量RT-PCR的方法检测了12个A族OsHsf 基因�

Global site tag (gtag.js) - Google Analytics