MySQL 5.7 SYS系統SCHEMA

來源:互聯網
上載者:User

標籤:

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

在說明系統資料庫之前,先來看下MySQL在資料字典方面的演變曆史:
MySQL4.1 提供了information_schema 資料字典。從此可以很簡單的用SQL語句來檢索需要的系統中繼資料了。
MySQL5.5 提供了performance_schema 效能字典。 但是這個字典比較專業,一般人可能也就看看就不了了之了。
MySQL5.7 提供了 sys系統資料庫。 sys資料庫裡麵包含了一系列的預存程序、自訂函數以及視圖來協助我們快速的瞭解系統的中繼資料資訊。


sys系統資料庫結合了information_schema和performance_schema的相關資料,讓我們更加容易的檢索中繼資料。 現在呢,我就示範下幾種情境下如何快速的使用。


第一,
比如之前想要知道某個表是否存在與否,可以用以下兩種方法:

A, 悲觀的方法,寫SQL從information_schema中拿資訊:

[sql] view plain copy
  1. mysql> SELECT IF(COUNT(*) = 0,‘Not exists!‘,‘Exists!‘) AS ‘result‘ FROM information_schema.tables WHERE table_schema = ‘new_feature‘ AND table_name = ‘t1‘;  
  2. +-------------+  
  3. | result      |  
  4. +-------------+  
  5. | Not exists! |  
  6. +-------------+  
  7. 1 row in set (0.00 sec)  



B,樂觀的方法,假設表存在,寫一個預存程序:
[sql] view plain copy
  1. DELIMITER $$  
  2.   
  3.   
  4. USE `new_feature`$$  
  5.   
  6.   
  7. DROP PROCEDURE IF EXISTS `sp_table_exists`$$  
  8.   
  9.   
  10. CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_table_exists`(  
  11.     IN db_name VARCHAR(64),  
  12.     IN tb_name VARCHAR(64),  
  13.     OUT is_exists VARCHAR(60)  
  14.     )  
  15. BEGIN  
  16.       DECLARE no_such_table CONDITION FOR 1146;  
  17.       DECLARE EXIT HANDLER FOR no_such_table  
  18.       BEGIN  
  19.         SET is_exists = ‘Not exists!‘;  
  20.       END;  
  21.         
  22.       SET @stmt = CONCAT(‘select 1 from ‘,db_name,‘.‘,tb_name);  
  23.       PREPARE s1 FROM @stmt;  
  24.       EXECUTE s1;  
  25.       DEALLOCATE PREPARE s1;  
  26.       SET is_exists = ‘Exists!‘;  
  27.     END$$  
  28.   
  29.   
  30. DELIMITER ;  




現在來調用:
[sql] view plain copy
  1. mysql> call sp_table_exists(‘new_feature‘,‘t1‘,@result);  
  2. Query OK, 0 rows affected (0.00 sec)  
  3.   
  4.   
  5. mysql> select @result;  
  6. +-------------+  
  7. | @result     |  
  8. +-------------+  
  9. | Not exists! |  
  10. +-------------+  
  11. 1 row in set (0.00 sec)  




現在我們直接用sys資料庫裡面現有的預存程序來進行調用,
[sql] view plain copy
  1. mysql> CALL table_exists(‘new_feature‘,‘t1‘,@v_is_exists);  
  2. Query OK, 0 rows affected (0.00 sec)  
  3.   
  4.   
  5. mysql> SELECT IF(@v_is_exists = ‘‘,‘Not exists!‘,@v_is_exists) AS ‘result‘;  
  6. +-------------+  
  7. | result      |  
  8. +-------------+  
  9. | Not exists! |  
  10. +-------------+  
  11. 1 row in set (0.00 sec)  




第二,擷取沒有使用過的索引。


[sql] view plain copy
  1. mysql> SELECT * FROM schema_unused_indexes;  
  2. +---------------+-------------+--------------+  
  3. | object_schema | object_name | index_name   |  
  4. +---------------+-------------+--------------+  
  5. | new_feature   | t1          | idx_log_time |  
  6. | new_feature   | t1          | idx_rank2    |  
  7. +---------------+-------------+--------------+  
  8. 2 rows in set (0.00 sec)  




第三, 檢索指定資料庫下面的表掃描資訊,過濾出執行次數大於10的查詢,
[sql] view plain copy
  1. mysql> SELECT * FROM statement_analysis WHERE db=‘new_feature‘ AND full_scan = ‘*‘  AND exec_count > 10\G  
  2. *************************** 1. row ***************************  
  3.             query: SHOW STATUS   
  4.                db: new_feature  
  5.         full_scan: *  
  6.        exec_count: 26  
  7.         err_count: 0  
  8.        warn_count: 0  
  9.     total_latency: 74.68 ms  
  10.       max_latency: 3.86 ms  
  11.       avg_latency: 2.87 ms  
  12.      lock_latency: 4.50 ms  
  13.         rows_sent: 9594  
  14.     rows_sent_avg: 369  
  15.     rows_examined: 9594  
  16. rows_examined_avg: 369  
  17.     rows_affected: 0  
  18. rows_affected_avg: 0  
  19.        tmp_tables: 0  
  20.   tmp_disk_tables: 0  
  21.       rows_sorted: 0  
  22. sort_merge_passes: 0  
  23.            digest: 475fa3ad9d4a846cfa96441050fc9787  
  24.        first_seen: 2015-11-16 10:51:17  
  25.         last_seen: 2015-11-16 11:28:13  
  26. *************************** 2. row ***************************  
  27.             query: SELECT `state` , `round` ( SUM ... uration (summed) in sec` DESC   
  28.                db: new_feature  
  29.         full_scan: *  
  30.        exec_count: 12  
  31.         err_count: 0  
  32.        warn_count: 12  
  33.     total_latency: 16.43 ms  
  34.       max_latency: 2.39 ms  
  35.       avg_latency: 1.37 ms  
  36.      lock_latency: 3.54 ms  
  37.         rows_sent: 140  
  38.     rows_sent_avg: 12  
  39.     rows_examined: 852  
  40. rows_examined_avg: 71  
  41.     rows_affected: 0  
  42. rows_affected_avg: 0  
  43.        tmp_tables: 24  
  44.   tmp_disk_tables: 0  
  45.       rows_sorted: 140  
  46. sort_merge_passes: 0  
  47.            digest: 538e506ee0075e040b076f810ccb5f5c  
  48.        first_seen: 2015-11-16 10:51:17  
  49.         last_seen: 2015-11-16 11:28:13  
  50. 2 rows in set (0.01 sec)  






第四, 同樣繼續上面的,過濾出有暫存資料表的查詢,


[sql] view plain copy
  1. mysql> SELECT * FROM statement_analysis WHERE db=‘new_feature‘ AND tmp_tables > 0 ORDER BY tmp_tables DESC LIMIT 1\G  
  2. *************************** 1. row ***************************  
  3.             query: SELECT `performance_schema` .  ... name` . `SUM_TIMER_WAIT` DESC   
  4.                db: new_feature  
  5.         full_scan: *  
  6.        exec_count: 2  
  7.         err_count: 0  
  8.        warn_count: 0  
  9.     total_latency: 87.96 ms  
  10.       max_latency: 59.50 ms  
  11.       avg_latency: 43.98 ms  
  12.      lock_latency: 548.00 us  
  13.         rows_sent: 101  
  14.     rows_sent_avg: 51  
  15.     rows_examined: 201  
  16. rows_examined_avg: 101  
  17.     rows_affected: 0  
  18. rows_affected_avg: 0  
  19.        tmp_tables: 332  
  20.   tmp_disk_tables: 15  
  21.       rows_sorted: 0  
  22. sort_merge_passes: 0  
  23.            digest: ff9bdfb7cf3f44b2da4c52dcde7a7352  
  24.        first_seen: 2015-11-16 10:24:42  
  25.         last_seen: 2015-11-16 10:24:42  
  26. 1 row in set (0.01 sec)  




可以看到上面查詢詳細的詳細,再也不用執行show status 手工去過濾了。




第五, 檢索執行次數排名前五的語句,
[sql] view plain copy
  1. mysql> SELECT statement,total FROM user_summary_by_statement_type WHERE `user`=‘root‘ ORDER BY total DESC LIMIT 5;  
  2. +-------------------+-------+  
  3. | statement         | total |  
  4. +-------------------+-------+  
  5. | jump_if_not       | 17635 |  
  6. | freturn           |  3120 |  
  7. | show_create_table |   289 |  
  8. | Field List        |   202 |  
  9. | set_option        |   190 |  
  10. +-------------------+-------+  
  11. 5 rows in set (0.01 sec)  






樣本我就寫這麼多了,詳細的去看使用手冊並且自己摸索去吧。  http://blog.csdn.net/yueliangdao0608/article/details/50032851

MySQL 5.7 SYS系統SCHEMA

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.