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?
|
|
|
No there isn't. See https://jira.mongodb.org/browse/SERVER-701 |
|||
|
|
|
You could do this:
|
|||||||||
|