Skip to content

Instantly share code, notes, and snippets.

@jneight
Created August 12, 2013 08:54
Show Gist options
  • Save jneight/6209273 to your computer and use it in GitHub Desktop.
Save jneight/6209273 to your computer and use it in GitHub Desktop.
Get the rows in each table.
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