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 kno开发者_运维知识库w how "big" my DB is.
Cheers
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.
精彩评论