Comment obtenir la taille de la base de données dans PostgreSQL

SELECT pg_size_pretty( pg_database_size('dbname') );
Cloudy Caiman