Horje
mongodb rename database Code Example
rename database in robo 3t
db.copyDatabase("db_to_rename","db_renamed","localhost")
use db_to_rename
db.dropDatabase();
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()




Shell

Related
windows install composer Code Example windows install composer Code Example
vscode publish to github organisation Code Example vscode publish to github organisation Code Example
kill running port in ubuntu using procees id Code Example kill running port in ubuntu using procees id Code Example
pip install requirements.txt ignore errors Code Example pip install requirements.txt ignore errors Code Example
create new repository in git bash Code Example create new repository in git bash Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10