postgresql数据库统计对象大小

2022/5/31 2:21:22

本文主要是介绍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/



这篇关于postgresql数据库统计对象大小的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程