Answers for "mongodb rename database"

1

rename database in robo 3t

db.copyDatabase("db_to_rename","db_renamed","localhost")
use db_to_rename
db.dropDatabase();
Posted by: Guest on January-06-2021
1

mongodb rename database

# Dump db to a local folder
mongodump mongodb://user:pwd@localhost/old_name -o ./dump 

# Restore the db with the new name
mongorestore mongodb://user:pwd@localhost -d new_name ./dump/old_name

# Then run these commands in your mongodb shell
use old_name
db.dropDatabase()
Posted by: Guest on January-10-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language