postgresql 按大小列出和排序表
Posted
技术标签:
【中文标题】postgresql 按大小列出和排序表【英文标题】:postgresql list and order tables by size 【发布时间】:2014-03-11 09:31:29 【问题描述】:如何列出 PostgreSQL 数据库的所有表并按大小排序?
【问题讨论】:
如果您使用的是命令行 psql 客户端,那么一个简单的\d+
将向您显示此信息,尽管未排序。
谢谢。但是我需要它排序,我的表太多了。
人们正在寻找相同的东西,但寻找的是数据库而不是表格:here is the solution.
Re psql: 用 --echo-hidden 启动它,它会告诉你为 \d+ 和其他反斜杠命令完成的查询。易于添加排序。
【参考方案1】:
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
manual 中所有对象大小函数的列表。
【讨论】:
这是 table_schema,而不是 schema_name。第一个查询很好,但是您已经开始在 psql 会话中输入一些内容,这导致了语法错误。 OK 这段代码有效:select table_schema, table_name, pg_relation_size(table_schema||'.'||table_name) from information_schema.tables order by 3;
感谢您的帮助!
知道这在我的情况下不起作用吗? ***.com/questions/40977776/…
@Sucrenoir:“不起作用”不是有效的 Postgres 错误消息。我的答案中的查询对我有用:rextester.com/KGKPR49004
您应该使用pg_total_relation_size
来获取表的总大小包括其索引 - 请参阅***.com/a/41991566/1668200【参考方案2】:
这将显示架构名称、表名称、大小和大小(排序所需)。
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;
我根据此处list of schema with sizes (relative and absolute) in a PostgreSQL database的解决方案构建它
【讨论】:
这太有用了;还考虑了索引。 将 relkind 添加到此以显式识别表或索引可能很有用 这仅适用于 public 方案。【参考方案3】: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
另一种选择
【讨论】:
【参考方案4】: 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
【讨论】:
如果您解释为什么建议的方法有用,您的回答会更有价值。 它类似于马的答案,只是用漂亮的大小进行排序,因为排序视图很容易看。 请使用“答案”空间中的“编辑”链接将该文本添加到您的答案中。然后你的贡献将符合 *** 指南(在帮助中心阅读一点):-)【参考方案5】:SELECT
relname as "Table",
pg_size_pretty(pg_total_relation_size(relid)) As "Size",
pg_size_pretty(pg_total_relation_size(relid) - pg_relation_size(relid)) as "External Size"
FROM pg_catalog.pg_statio_user_tables ORDER BY pg_total_relation_size(relid) DESC;
取自这里https://wiki-bsse.ethz.ch/display/ITDOC/Check+size+of+tables+and+objects+in+PostgreSQL+database
【讨论】:
【参考方案6】:这样会更清楚。
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
人性化格式以bytes
、kB
、MB
、GB
、TB
表示。
bytes
到 kB
- 从 10240 bytes
开始
bytes
到 MB
- 从 10485248 bytes
= 10239.5 kB
~ 10 MB
开始
bytes
到 GB
- 从 10736893952 bytes
= 10239.5 MB
~ 10 BG
开始
bytes
到 TB
- 从 10994579406848 bytes
= 10239.5 GB
~ 10 TB
开始
所有单位转换都从10 + <unit>
开始。
供参考 - Postgres Official Documentation
【讨论】:
此示例不适用于大写表名 在更新的 Postgres 版本(如 12.4)中,此查询给出错误 - 修复是在table_name
周围的 use quote_ident()。【参考方案7】:
我需要找出哪些表占用的空间最多。
根据其他答案,我使用了该查询:
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。
【讨论】:
【参考方案8】:我喜欢下面的说法:
SELECT
table_name,
pg_size_pretty( pg_total_relation_size(quote_ident(table_name))),
pg_total_relation_size(quote_ident(table_name))
FROM
information_schema.tables
WHERE
table_schema = 'public'
ORDER BY
pg_total_relation_size(quote_ident(table_name)) DESC
您可以以漂亮的格式查看总大小,但它的排序也正确。
【讨论】:
非常感谢!【参考方案9】:select table_name, pg_size_pretty(pg_total_relation_size(quote_ident(table_name)))
from information_schema.tables
where table_schema = 'public'
order by pg_total_relation_size(quote_ident(table_name));
pg_total_relation_size
将包括索引和表的大小。
如果您只想要表格大小,那么pg_relation_size
就足够了。
【讨论】:
【参考方案10】:SELECT nspname || '.' || relname AS "relation",
pg_size_pretty(pg_total_relation_size(C.oid)) AS "total_size"
FROM pg_class C
LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace)
WHERE nspname NOT IN ('pg_catalog', 'information_schema')
AND C.relkind <> 'i'
AND nspname !~ '^pg_toast'
ORDER BY pg_total_relation_size(C.oid) DESC
;
信用: https://makandracards.com/makandra/52141-postgresql-how-to-show-table-sizes
【讨论】:
【参考方案11】:如果您要查找总、toast 和索引大小的细分,请使用:
SELECT *, pg_size_pretty(total_bytes) AS total
, pg_size_pretty(index_bytes) AS INDEX
, pg_size_pretty(toast_bytes) AS toast
, pg_size_pretty(table_bytes) AS TABLE
FROM (
SELECT *, total_bytes-index_bytes-COALESCE(toast_bytes,0) AS table_bytes
FROM (
SELECT c.oid,nspname AS table_schema, relname AS TABLE_NAME
, c.reltuples AS row_estimate
, pg_total_relation_size(c.oid) AS total_bytes
, pg_indexes_size(c.oid) AS index_bytes
, pg_total_relation_size(reltoastrelid) AS toast_bytes
FROM pg_class c
LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
WHERE relkind = 'r'
) a
) a ORDER BY total_bytes DESC;
【讨论】:
以上是关于postgresql 按大小列出和排序表的主要内容,如果未能解决你的问题,请参考以下文章
sh Bash:如何列出每个文件和目录的大小(递归)并按大小排序?
使用postgresql TEXT类型按字段排序时如何删除重复项?
如何在 PostgreSQL 中列出具有相应大小的表的所有索引?