Skip to content

Instantly share code, notes, and snippets.

@dammer
Created February 4, 2013 09:21
Show Gist options
  • Select an option

  • Save dammer/4705799 to your computer and use it in GitHub Desktop.

Select an option

Save dammer/4705799 to your computer and use it in GitHub Desktop.

Revisions

  1. dammer created this gist Feb 4, 2013.
    6 changes: 6 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    SELECT nspname || '.' || relname AS "relation",
    pg_size_pretty(pg_relation_size(C.oid)) AS "size", pg_size_pretty(pg_total_relation_size(C.oid)) AS "total size(with indexes)"
    FROM pg_class C
    LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace)
    WHERE nspname NOT IN ('pg_catalog', 'information_schema')
    ORDER BY pg_relation_size(C.oid) DESC;