Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2343648
  • 博文数量: 276
  • 博客积分: 5998
  • 博客等级: 大校
  • 技术积分: 5175
  • 用 户 组: 普通用户
  • 注册时间: 2010-12-24 14:43
文章分类

全部博文(276)

文章存档

2014年(25)

2013年(11)

2012年(69)

2011年(167)

2010年(4)

分类: Mysql/postgreSQL

2011-09-09 19:34:56

作用:统计每个库的真实数据与索引数据的总和的大小单位为MB,真实数据的大小单位MB,索引数据的大小MB,含有表的总数,当前日期。并且以每个库的大小倒序排序。
 
SELECT   table_schema,\
         SUM(data_length+index_length)/1024/1024 AS total_mb,\
         SUM(data_length)/1024/1024 AS data_mb,\
         SUM(index_length)/1024/1024 AS index_mb,\
         COUNT(*) AS tables,\
         CURDATE() AS today \
FROM     information_schema.tables \
GROUP BY table_schema \
ORDER BY 2 DESC;
阅读(1263) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~