Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There's a typo in my MongoDB database name and I'm looking to rename the database.

I can copy and delete like so...

db.copyDatabase('old_name', 'new_name');
use old_name
db.dropDatabase();

Is there a command to rename a database?

share|improve this question

2 Answers

up vote 21 down vote accepted

No there isn't. See https://jira.mongodb.org/browse/SERVER-701

share|improve this answer

You could do this:

db.copyDatabase("db_to_rename","db_renamed","localhost")
use db_to_rename
db.dropDatabase();
share|improve this answer
The answer is confusing with regards to the 3rd argument of copyDatabase. See the MongoDB Copy Database Commands to get clear. – David James Aug 4 '12 at 20:19
For the 3rd argument I suggest putting "localhost". Edited for clarity – BZMWillemsen Aug 10 '12 at 14:54
6  
The 3rd argument can actually be omitted, and it will default to the same server. – Haakon Aug 24 '12 at 11:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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