Tables size

select 
  table_schema, 
  table_name,
  pg_relation_size('"'||table_schema||'"."'||table_name||'"')/1024/1024 MB
from information_schema.tables
order by 3

Leave a Reply

Your email address will not be published. Required fields are marked *