当前位置:首页 > 数据库 > 正文内容

postgresql 查看数据库、表的大小

root5年前 (2021-06-21)数据库1505
查看数据库的大小
select pg_database_size('test');
select pg_size_pretty(pg_database_size('test');

查看单索引大小

elect pg_relation_size('idx_id');
select pg_size_pretty(pg_relation_size('idx_id');

查看表中所有索引大小
select pg_indexes_size('user');
select pg_size_pretty(pg_indexes_size('user'));


使用pg_table_size() 函数查看

select pg_table_size('user');

select pg_size_pretty(pg_table_size('user'));

查看表大小同pg_table_size()

select pg_relation_size('user');

select pg_size_pretty(pg_relation_size('user'));


查看表总大小

select pg_total_relation_size('user');
select pg_size_pretty(pg_total_relation_size('user'));


参考

https://www.cnblogs.com/mchina/archive/2013/04/19/3028573.html


扫描二维码推送至手机访问。

版权声明:本文由一叶知秋发布,如需转载请注明出处。

本文链接:https://www.zhiqiu.top/?id=129

分享给朋友:

相关文章

postgresql 导入导出sql 文件

pg_dump  -h localhost -U postgres -t tablename databasename >./test.sql导出 -t 表名  psql -d test1 -U...

postgresql 的安装使用

安装centos系统 9.6版本# Install the repository RPMsudo yum install -y https://download.postgresql.org/pub/repos/yum/repor...

清空postgresql的缓存

系统:centos,版本:postgresql-9.6因为要测试postgresql的性能,当多次查询的时候查询结果会因为缓存用时很短,不能模拟出现实使用的场景。因此需要清除缓存。首先stop掉postgresqlsystemctl sto...

centos7 快速搭建 mysql

https://blog.csdn.net/qq_36582604/article/details/80526287...

mysql 重置表

truncate table 表名...

mysql数据导入es

将mysql数据取出放到elasticsearch中from datetime import datetime from elasticsearch import Elastic...