gpt4 book ai didi

sql - postgresql 按大小列出和排序表

转载 作者:行者123 更新时间:2023-11-29 11:04:53 33 4
gpt4 key购买 nike

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

最佳答案

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

如果您有多个模式,这会显示模式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 中所有对象大小函数的列表.

关于sql - postgresql 按大小列出和排序表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21738408/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com