Created
August 29, 2018 14:01
-
-
Save bdelespierre/a6d592482134248fbf9aef19a1ae4866 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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