1 Answer
- Newest
- Most votes
- Most comments
0
Hi
Try running the following query to get the size of all the databases in the instance:
SELECT pg_database.datname, pg_database_size(pg_database.datname) AS size FROM pg_database;
Cheers Tony
answered 2 years ago
Relevant content
- asked 5 months ago
- asked 2 years ago
Thanks, actually there were some databases that i forgot about and were not in use, but they only added up to around 50Mbs.