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

postgresql 查看数据库、表的大小

root4年前 (2021-06-21)数据库946
查看数据库的大小
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://zhiqiu.top/?id=129

分享给朋友:

相关文章

postgresql 的安装使用

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

postgresql修改数据存储位置

postgresql修改数据存储位置

最近公司提供了一台新的服务器,同时有一个盘是ssd。同时为了测试postgresql的性能,将数据放置到ssd上系统centos7.9 数据库postgresql-9.6首先停掉数据库systemctl stop pos...

被Navicat坑哭的日常,版本问题

mysql5.7DROP TABLE IF EXISTS `xxx_copy1`;CREATE TABLE `xxx_copy1`  (  `id` int(11) UNSIGNED NOT NULL AUTO_INCR...

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...