MySQL数据库表空间及索引的查看

来源:互联网 发布:淘宝怎么域名改不了 编辑:程序博客网 时间:2024/06/05 03:49

MySQL数据库表空间及索引的查看

本文主要介绍了MySQL数据库表空间和索引的查看方法,希望能对您有所帮助。

本文我们介绍MySQL数据库表空间和索引的查看方法,并详细地给出了其代码,接下来我们一一介绍。

1.查看索引

(1)单位是GB

  1. SELECT CONCAT(ROUND(SUM(index_length)/(1024*1024*1024), 2), ' GB')   
  2.  
  3. AS 'Total Index Size'  

+------------------+

| Total Index Size |

+------------------+

| 1.70 GB |

+------------------+

(2)单位是MB

  1. SELECT CONCAT(ROUND(SUM(index_length)/(1024*1024), 2), ' MB')   
  2.  
  3. AS 'Total Index Size' FROM information_schema.TABLES  
  4.  
  5. WHERE table_schema LIKE 'database'; 

其中“database”为你所要查看的数据库。

2.查看表空间

  1. SELECT CONCAT(ROUND(SUM(data_length)/(1024*1024*1024), 2), ' GB') AS 'Total Data Size'   
  2. FROM information_schema.TABLES WHERE table_schema LIKE 'database'; 

+-----------------+

| Total Data Size |

+-----------------+

| 3.01 GB |

+-----------------+

3.查看数据库中所有表的信息

  1. SELECT CONCAT(table_schema,'.',table_name) AS 'Table Name',  
  2.  
  3. CONCAT(ROUND(table_rows/1000000,2),'M') AS 'Number of Rows',  
  4.  
  5. CONCAT(ROUND(data_length/(1024*1024*1024),2),'G') AS 'Data Size',  
  6.  
  7. CONCAT(ROUND(index_length/(1024*1024*1024),2),'G') AS 'Index Size' ,  
  8.  
  9. CONCAT(ROUND((data_length+index_length)/(1024*1024*1024),2),'G')   
  10.  
  11. AS'Total'FROM information_schema.TABLES   
  12.  
  13. WHERE table_schema LIKE 'database'; 

关于MySQL表空间和索引的查看方法就介绍到这里,如果想了解更多MySQL数据库的知识可以到这里来查看:http://database.51cto.com/mysql/。

原创粉丝点击