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/
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 分享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单机安装配置