3中方法,不论什么一个都行

方法一 ,查一个表

select pg_size_pretty(pg_relation_size('table_name'));

方法二 ,查出全部表并按大小排序

SELECT
table_schema || '.' || table_name
AS table_full_name, pg_size_pretty(pg_total_relation_size('"' ||table_schema || '"."' || table_name || '"')) AS size
FROM
information_schema.tables
ORDER BY
pg_total_relation_size('"' || table_schema || '"."' || table_name || '"')
DESC limit 20

方法三,查出全部表按大小排序并分离data与index

SELECT
table_name,
pg_size_pretty(table_size) AS table_size,
pg_size_pretty(indexes_size) AS indexes_size,
pg_size_pretty(total_size) AS total_size
FROM (
SELECT
table_name,
pg_table_size(table_name) AS table_size,
pg_indexes_size(table_name) AS indexes_size,
pg_total_relation_size(table_name) AS total_size
FROM (
SELECT ('"' || table_schema || '"."' || table_name || '"') AS table_name
FROM information_schema.tables
) AS all_tables
ORDER BY total_size DESC
) AS pretty_sizes

最新文章

  1. 原生JS封装Ajax插件(同域&&jsonp跨域)
  2. order by用法
  3. Daily Scrum Meeting ——ThirdDay
  4. SpirentTestcenter测试仪的自动化
  5. runtime 运行机制
  6. ubuntu下eclipse遇到The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path
  7. checkbox提交多组数据到action
  8. Super A^B mod C
  9. 极客教学:如何使用树莓派击落&劫持无人机
  10. UIView局部点击(转)
  11. 测试ODBC与OLE
  12. qsettings 保存自定义结构体(QVariant与自定义结构体相互转化)
  13. 【Hibernate步步】--一对一映射双向关联具体解释(两)
  14. CentOS文件权限管理
  15. 弱省胡策 Magic
  16. Unity3D代码动态修改材质球的颜色
  17. Educational Codeforces Round 53 Editorial
  18. windows7下解决caffe check failed registry.count(type) == 1(0 vs. 1) unknown layer type问题
  19. Python常用模块之PIL(手册篇:Image模块)
  20. ZOJ 3256 Tour in the Castle 插头DP 矩阵乘法

热门文章

  1. 01-JS起步
  2. [Recompose] Handle React Events as Streams with RxJS and Recompose
  3. Codeforces 327A-Flipping Game(暴力枚举)
  4. 零基础学python-5.6 数字位操作与其它工具
  5. PostgreSQL数据库创建/删除
  6. 弯道超车,换一个思路,避免addEventListener为同一个元素重复赋予事件
  7. WebApi 参数请求
  8. CodeBlocks 配色方案
  9. PHP解析XML格式文档
  10. Redis 数据持久化的方案的实现