postgresql数据库统计对象大小

--查看数据库大小,不计算索引
select pg_size_pretty(pg_database_size('mydb'));
--查看数据库大小,包含索引
select pg_size_pretty(pg_total_size('mydb'));
--查看表中索引大小
select pg_size_pretty(pg_indexes_size('test_1'));
--查看表大小,不包括索引
select pg_size_pretty(pg_relation_size('test_1'));  
--or
\dt+ test_1
--查看表大小,包括索引
select pg_size_pretty(pg_total_relation_size('test_1'));  
--查看某个模式大小,包括索引。不包括索引可用pg_relation_size
select schemaname,round(sum(pg_total_relation_size(schemaname||'.'||tablename))/1024/1024) "Mb" from pg_tables where schemaname='mysch' group by 1;
--查看表空间大小
select pg_size_pretty(pg_tablespace_size('pg_global'));
--查看表对应的数据文件
select pg_relation_filepath('test_1');
--切换log日志文件到下一个
select pg_rotate_logfile();
转:http://blog.itpub.net/29487349/viewspace-2510782/
 

PostgreSQL 查询所有数据库大小,表大小,索引大小,以及表空间大小:

https://blog.csdn.net/u013992330/article/details/106807311/

posted @   规格严格-功夫到家  阅读(190)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2020-05-30 Windows清理svn
2020-05-30 Scala中class、object、case class、case object区别
2019-05-30 Rsyslog远程传输的几种方式
2019-05-30 libsvn_client-1.so.0: cannot open shared object file: No such file or directory
2019-05-30 解决RHEL6 vncserver 启动 could not open default font 'fixed'错误.
2017-05-30 RocketMQ 就是耗内存
2017-05-30 Linux系统消息队列框架Kafka单机安装配置
点击右上角即可分享
微信分享提示