Created
March 11, 2014 14:18
-
-
Save kamarcum/9486644 to your computer and use it in GitHub Desktop.
Find your tallest postgres tables
This file contains hidden or 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
ActiveRecord::Base.connection.execute("SELECT relname, reltuples FROM pg_class where relname NOT LIKE 'pg_%' ORDER BY reltuples DESC LIMIT 10;").each { |row| puts row } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment