Skip to content

Instantly share code, notes, and snippets.

@jodell
Created April 10, 2013 01:16
Show Gist options
  • Save jodell/5350969 to your computer and use it in GitHub Desktop.
Save jodell/5350969 to your computer and use it in GitHub Desktop.
SELECT
nspname AS schemaname,relname,reltuples
FROM pg_class C
LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace)
WHERE
nspname NOT IN ('pg_catalog', 'information_schema') AND
relkind='r'
ORDER BY reltuples DESC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment