查找 PostgreSQL 表及其索引的磁盘大小

Shihab Sikder 2024年2月15日
  1. 使用 PSQL 查找 PostgreSQL 表和数据库的磁盘大小
  2. 查找数据库中最大表的大小
查找 PostgreSQL 表及其索引的磁盘大小

本文将讨论如何找到 PostgreSQL 表及其索引的磁盘大小。

使用 PSQL 查找 PostgreSQL 表和数据库的磁盘大小

你可以使用 \l+ 查看数据库大小,使用 \d+ 显示表大小。但在此之前,你需要登录数据库执行查询。

以下是在 Postgres 中显示表和数据库大小的命令和输出:

postgres=# \l+

输出:

数据库大小

postgres-# \d+
                                            List of relations
 Schema |       Name       |   Type   |  Owner   | Persistence | Access method |    Size    | Description
--------+------------------+----------+----------+-------------+---------------+------------+-------------
 public | book_lends       | table    | postgres | permanent   | heap          | 16 kB      |
 public | books            | table    | postgres | permanent   | heap          | 16 kB      |
 public | employee         | table    | postgres | permanent   | heap          | 16 kB      |
 public | employee_id_seq  | sequence | postgres | permanent   |               | 8192 bytes |
 public | events           | table    | postgres | permanent   | heap          | 16 kB      |
 public | mock_data        | table    | postgres | permanent   | heap          | 48 kB      |
 public | product          | table    | postgres | permanent   | heap          | 16 kB      |
 public | product_id_seq   | sequence | postgres | permanent   |               | 8192 bytes |
 public | products         | table    | postgres | permanent   | heap          | 16 kB      |
 public | products_id_seq  | sequence | postgres | permanent   |               | 8192 bytes |
 public | prroducts        | table    | postgres | permanent   | heap          | 8192 bytes |
 public | prroducts_id_seq | sequence | postgres | permanent   |               | 8192 bytes |
 public | stores           | table    | postgres | permanent   | heap          | 16 kB      |
 public | stores_id_seq    | sequence | postgres | permanent   |               | 8192 bytes |
 public | users            | table    | postgres | permanent   | heap          | 16 kB      |
(15 rows)

这里它显示了我们在 Postgres 数据库中的所有表及其名称、类型、所有者、大小、访问方法等。

查找数据库中最大表的大小

这是 Postgres 官方编写的代码片段,用于按降序显示表格大小。

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
  LIMIT 10;

输出:

     relation      | total_size
-------------------+------------
 public.mock_data  | 48 kB
 public.product    | 32 kB
 public.products   | 32 kB
 public.books      | 32 kB
 public.book_lends | 32 kB
 public.employee   | 32 kB
 public.stores     | 32 kB
 public.users      | 32 kB
 public.events     | 16 kB
 public.prroducts  | 16 kB
(10 rows)

我们在数据库中的 postgres 下搜索了 10 个最大的表。

你可以点击以下 link 了解更多关于 Postgres 中磁盘大小的查询。你将找到用于查找最大集群、最大关系、分区表等的 SQL 查询。

这里更多关于数据库大小的函数。

作者: Shihab Sikder
Shihab Sikder avatar Shihab Sikder avatar

I'm Shihab Sikder, a professional Backend Developer with experience in problem-solving and content writing. Building secure, scalable, and reliable backend architecture is my motive. I'm working with two companies as a part-time backend engineer.

LinkedIn Website

相关文章 - PostgreSQL Table