Hãy thử các chức năng kích thước đối tượng cơ sở dữ liệu. Ví dụ:
SELECT pg_size_pretty(pg_total_relation_size('"<schema>"."<table>"'));
Đối với tất cả các bảng, một cái gì đó dọc theo dòng:
SELECT
table_schema || '.' || table_name AS table_full_name,
pg_size_pretty(pg_total_relation_size('"' || table_schema || '"."' || table_name || '"')) AS size
FROM information_schema.tables
ORDER BY
pg_total_relation_size('"' || table_schema || '"."' || table_name || '"') DESC;
Chỉnh sửa:Đây là truy vấn do @phord gửi, để thuận tiện:
SELECT
table_name,
pg_size_pretty(table_size) AS table_size,
pg_size_pretty(indexes_size) AS indexes_size,
pg_size_pretty(total_size) AS total_size
FROM (
SELECT
table_name,
pg_table_size(table_name) AS table_size,
pg_indexes_size(table_name) AS indexes_size,
pg_total_relation_size(table_name) AS total_size
FROM (
SELECT ('"' || table_schema || '"."' || table_name || '"') AS table_name
FROM information_schema.tables
) AS all_tables
ORDER BY total_size DESC
) AS pretty_sizes;
Tôi đã sửa đổi nó một chút để sử dụng pg_table_size()
để bao gồm siêu dữ liệu và tăng kích thước.