mysql 表空间及索引的查看方法

很文博客hinven.com 数据库评论426字数 1044阅读模式
广告也精彩

mysql 表空间及索引的查看方法,需要的朋友可以参考下。

1.查看索引文章源自很文博客https://www.hinven.com很文博客-https://www.hinven.com/12574.html

(1)单位是GB文章源自很文博客https://www.hinven.com很文博客-https://www.hinven.com/12574.html

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

(2)单位是MB文章源自很文博客https://www.hinven.com很文博客-https://www.hinven.com/12574.html

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

其中“database”为你所要查看的数据库文章源自很文博客https://www.hinven.com很文博客-https://www.hinven.com/12574.html

2.查看表空间文章源自很文博客https://www.hinven.com很文博客-https://www.hinven.com/12574.html

  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';
  3. +-----------------+
  4. | Total Data Size |
  5. +-----------------+
  6. | 3.01 GB |
  7. +-----------------+

3.查看数据库中所有表的信息文章源自很文博客https://www.hinven.com很文博客-https://www.hinven.com/12574.html

  1. SELECT CONCAT(table_schema,'.',table_name) AS 'Table Name',
  2. CONCAT(ROUND(table_rows/1000000,2),'M') AS 'Number of Rows',
  3. CONCAT(ROUND(data_length/(1024*1024*1024),2),'G') AS 'Data Size',
  4. CONCAT(ROUND(index_length/(1024*1024*1024),2),'G') AS 'Index Size' ,
  5. CONCAT(ROUND((data_length+index_length)/(1024*1024*1024),2),'G') AS'Total'FROM information_schema.TABLES WHERE table_schema LIKE 'database';
文章源自很文博客https://www.hinven.com很文博客-https://www.hinven.com/12574.html

工具:作品在线观看

女优:最新作品观看

中文:国语在线观看

weinxin
我的微信
扫一扫更精彩
大家的支持是我更新的动力!!!
 
广告也精彩
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定

拖动滑块以完成验证