How to rename a database in Mongodb 2.6

Use the following commands:
I can only find copy and drop commands for doing this. Please comment here if you find a single command to do this.

> db.copyDatabase('old_db_name', 'new_db_name');
> use old_db_name;
> db.dropDatabase();
Unknown's avatar

Author: Abhilash

Hi, Iโ€™m Abhilash! A seasoned web developer with 15 years of experience specializing in Ruby and Ruby on Rails. Since 2010, Iโ€™ve built scalable, robust web applications and worked with frameworks like Angular, Sinatra, Laravel, Node.js, Vue and React. Passionate about clean, maintainable code and continuous learning, I share insights, tutorials, and experiences here. Letโ€™s explore the ever-evolving world of web development together!

Leave a comment