Skip to content

Instantly share code, notes, and snippets.

@ShvedAction
Last active April 6, 2020 18:08
Show Gist options
  • Save ShvedAction/9f672b504a1c19aab4cff05e72d3a6a5 to your computer and use it in GitHub Desktop.
Save ShvedAction/9f672b504a1c19aab4cff05e72d3a6a5 to your computer and use it in GitHub Desktop.
List table with counts and sizes
SELECT nspname || '.' || relname AS "Таблиц_20_больших",
pg_size_pretty(pg_relation_size(C.oid)) AS "Размер",
reltuples
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
LIMIT 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment