PostgreSQL列表和订单表的大小


108

如何列出 PostgreSQL数据库的所有表并按大小排序


1
如果您正在使用命令行psql客户端,则简单的\d+将向您显示此信息,尽管未排序。
cdhowie

1
谢谢。但是我需要对它进行排序,我的表太多了。
没什么特别的,在这里

1
人们在寻找相同的东西,但寻找数据库而不是表:这是解决方案
Skippy le Grand Gourou

1
重新psql:以--echo-hidden开头,它将告诉您对\ d +和其他反斜杠命令进行的查询。易于添加排序。
尔根·斯特罗贝尔

Answers:


149
select table_name, pg_relation_size(quote_ident(table_name))
from information_schema.tables
where table_schema = 'public'
order by 2

public如果您具有多个架构,则可能会使用以下图表来显示架构中所有表的大小:

select table_schema, table_name, pg_relation_size('"'||table_schema||'"."'||table_name||'"')
from information_schema.tables
order by 3

SQLFiddle示例:http ://sqlfiddle.com/#!15/13157/3

手册中所有对象尺寸功能的列表。


它是table_schema,而不是schema_name。第一个查询很好,但是您已经开始在psql会话中键入某些内容,这导致语法错误。
yieldsfalsehood

好的,此代码有效:select table_schema, table_name, pg_relation_size(table_schema||'.'||table_name) from information_schema.tables order by 3; 感谢您的帮助!
没什么特别的,在这里

任何想法这在我的情况下不起作用吗?stackoverflow.com/questions/40977776/...
胡安·卡洛斯·Oropeza

@Sucrenoir:“不起作用”不是有效的Postgres错误消息。我的答案中的查询确实对我有用
a_horse_with_no_name

运行第一个查询时,我得到零行。 select * from information_schema.tables where table_schema = 'public';即使\dn显示架构公开,也会产生零行。可能是9.5的变化导致了这一点?
牧羊犬

71

这将显示架构名称,表名称,漂亮大小和大小(需要排序)。

SELECT
  schema_name,
  relname,
  pg_size_pretty(table_size) AS size,
  table_size

FROM (
       SELECT
         pg_catalog.pg_namespace.nspname           AS schema_name,
         relname,
         pg_relation_size(pg_catalog.pg_class.oid) AS table_size

       FROM pg_catalog.pg_class
         JOIN pg_catalog.pg_namespace ON relnamespace = pg_catalog.pg_namespace.oid
     ) t
WHERE schema_name NOT LIKE 'pg_%'
ORDER BY table_size DESC;

我基于PostgreSQL数据库中具有大小(相对和绝对)大小的模式列表的解决方案来构建此数据库


21

这将更加清楚。

pg_size_pretty(<numeric_value>) -将字节数转换为可读格式。

pg_database_size(<db_name>)-获取数据库大小(以字节为单位)

pg_total_relation_size(<relation_name>)-获取表及其索引的总大小(以字节为单位)

pg_relation_size(<relation_name>)-获取关系(表/索引)的大小,以字节为单位

pg_index_size(<relation_name>)-获取关系的索引大小(以字节为单位)

current_database() -获取正在执行此查询的当前使用的数据库。

查询:

select current_database() as database,
       pg_size_pretty(total_database_size) as total_database_size,
       schema_name,
       table_name,
       pg_size_pretty(total_table_size) as total_table_size,
       pg_size_pretty(table_size) as table_size,
       pg_size_pretty(index_size) as index_size
       from ( select table_name,
                table_schema as schema_name,
                pg_database_size(current_database()) as total_database_size,
                pg_total_relation_size(table_name) as total_table_size,
                pg_relation_size(table_name) as table_size,
                pg_indexes_size(table_name) as index_size
                from information_schema.tables
                where table_schema=current_schema() and table_name like 'table_%'
                order by total_table_size
            ) as sizes;

结果:

 database  | total_database_size | schema_name | table_name | total_table_size | table_size | index_size
-----------+---------------------+-------------+------------+------------------+------------+------------
 vigneshdb | 1586 MB             | corpdata    | table_aaa  | 16 kB            | 0 bytes    | 8192 bytes
 vigneshdb | 1586 MB             | corpdata    | table_bbb  | 24 kB            | 0 bytes    | 16 kB
 vigneshdb | 1586 MB             | corpdata    | table_ccc  | 640 kB           | 112 kB     | 488 kB
 vigneshdb | 1586 MB             | corpdata    | table_ddd  | 9760 kB          | 3152 kB    | 6568 kB
 vigneshdb | 1586 MB             | corpdata    | table_eee  | 1120 MB          | 311 MB     | 808 MB

人性化的格式表示byteskBMBGB,和TB

byteskB-从10240 bytes

bytesMB-从10485248 bytes= 10239.5 kB〜开始10 MB

bytesGB-从10736893952 bytes= 10239.5 MB〜开始10 BG

bytesTB-从10994579406848 bytes= 10239.5 GB〜开始10 TB

所有单位转换均始于10 + <unit>

供参考-Postgres官方文档


本示例不适用于大写表名称
Ivan Sveshnikov


4
select table_name,n_live_tup, pg_size_pretty(pg_relation_size(table_name))
from information_schema.tables
inner join pg_stat_user_tables  on table_name=relname
where table_schema = 'public'
order by 2 desc

另一种选择


2

我需要查找哪些表使用最多的空间。

根据其他答案,我使用了该查询:

select table_name, pg_size_pretty( pg_relation_size(quote_ident(table_name)) )
from information_schema.tables
where table_schema = 'public'
order by pg_relation_size(quote_ident(table_name)) desc

我得到以下结果:

table_name              pg_size_pretty
--------------------------------------
trade_binance           96 GB
closs_v2_binance_stash  46 GB
closs_bitfinex_stash    5725 MB
trade_bitfinex          5112 MB
...
api_requests            0 bytes
trade_huobi             0 bytes

我应该买一个更大的SSD。


1
 select uv.a tablename, pg_size_pretty(uv.b) sizepretty 
 from (select tb.tablename a, pg_table_size('schemaname.'||tb.tablename::text) b 
        from pg_tables tb 
        where tb.schemaname ilike 'schemaname' 
        order by 2 desc
       ) uv

1
如果您对建议的方法为何有用的解释,则您的答案将更有价值。
辛迪·梅斯特

它与马的答案类似,只是使用大小进行漂亮的排序,因为排序视图很容易查看。

请使用“答案”空间中的“编辑”链接将该文本添加到您的答案中。然后,您的贡献将符合StackOverflow准则(在帮助中心中有所了解):-)
Cindy Meister
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.