The Manual

PostgreSQL Table sizes

SELECT 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 <

Running Queries and Lock Status

Get Running Queries and Lock Status on PostgreSQL

Get Database size

Get the size of each Database on your PostgreSQL Server

Get a list of active queries and runtime on PostgreSQL

Get a list of active queries and runtime on PostgreSQL

Show Active Users connected to PostgreSQL

Show Active Users connected to PostgreSQL

The Manual © 2026