Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remaining space in heroku database?

is there a way to find the remaining space in the (shared) heroku database? Doesn't matter whether this is done via commandline or from within the app, I'd just like to know how "big" my DB is.

Cheers

like image 245
pagid Avatar asked Jun 12 '11 19:06

pagid


1 Answers

You can use pg:info from the command line:

$ heroku pg:info
Plan         Ika
State        available for 1 wk
Data size    2.56GB in 102 tables # <--------------------
PG version   9.0.4
Born         2011-03-03 16:01 PST

And then look at the "Data Size" value.

like image 122
mu is too short Avatar answered Sep 21 '22 15:09

mu is too short