程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> [MySQL]通過Profiles查看create語句的執行時間消耗

[MySQL]通過Profiles查看create語句的執行時間消耗

編輯:MySQL綜合教程

[MySQL]通過Profiles查看create語句的執行時間消耗


一,查看profiles的狀態值
1,查看profiles是否已經打開了,默認是不打開的。

mysql> show variables like '%pro%';

我查看一下profiles裡面沒有東西,所以公司服務器裡面profile是沒有打開的,我查看了一下mysql變量,果然是OFF的。

二,打開profiles,然後測試
1,開啟profiles

2,check下狀態值,果然已經開啟了,為ON

3,測試

mysql> create table test_cpny.listed_cpny_fin_rpt_prd

mysql>

mysql>

5,再check

看來時間消耗在| Sending data | 29.96599 |上面啊!

補充於2014-09-16

profiling_history_size

The number of statements for which to maintain profiling information if profiling is enabled. The default value is 15. The maximum value is 100. Setting the value to 0 effectively disables profiling. See Section 13.7.5.32, “SHOW PROFILES Syntax”.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved