postgresql列表和按大小排序的表

前端之家收集整理的这篇文章主要介绍了postgresql列表和按大小排序的表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有一种简单的方法可以列出Postgresql数据库中的所有表并按大小排序?

代码

SELECT * FROM tables
ORDER by tables.size

我正在使用Postgresql 9.3.2.

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

如果您有多个模式,则可以显示模式公共中所有表的大小,您可能希望使用:

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

手册中所有对象大小函数的列表:
https://www.postgresql.org/docs/current/static/functions-admin.html#FUNCTIONS-ADMIN-DBSIZE

猜你在找的Postgre SQL相关文章