I want to destroy the database but I'm not sure what the command would be. Does anyone know how to do this?

link|improve this question

feedback

2 Answers

up vote 11 down vote accepted

You shouldn't use a postgres command to fully delete your database, as you will not have permissions to create a new one. Instead you should use the heroku command to clear out your database:

heroku pg:reset
link|improve this answer
feedback

PostgreSQL uses:

DROP DATABASE mydb;

See the manual. That's not standard SQL.

You have to be logged into a different database to execute it. In standard installations you have a "maintenance db" of the name postgres for that. Of course, you need to own mydb or be a superuser.
And I need not mention that all data in database mydbwill be lost, right?

Edit:

Since the first part of my answer missed the point I did some research. Turns out this has been answered before.

link|improve this answer
1  
None of which applies on Heroku. – yfeldblum Oct 1 '11 at 21:27
That's right, I don't know about Heroku. It's what PostgreSQL uses, as I said. If it's not helpful, I'll delete it later. "Destroy the db" is vague. Start from scratch? Or get rid of it altogether? – Erwin Brandstetter Oct 1 '11 at 21:49
2  
On Heroku, you get a pre-created database and a pre-created user that can login to that database and that has complete permissions within that database. But you cannot drop the database and you cannot log into another database on the same server. So I assume the questioner wants to delete everything (including tables and all other database objects) and start over. – yfeldblum Oct 1 '11 at 22:23
@Justice: Thanks for the update. Now that you have added valuable information here, it would be kind of counterproductive to delete my answer ... – Erwin Brandstetter Oct 1 '11 at 22:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.