Mongorestore to a different database

后端 未结 4 1495
别跟我提以往
别跟我提以往 2020-12-13 17:20

In MongoDB, is it possible to dump a database and restore the content to a different database? For example like this:

mongodump --db db1 --out dumpdir
mongore         


        
4条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-13 17:30

    mongodump --db=DB_NAME --out=/path-to-dump
    mongorestore --nsFrom "DB_NAME.*" --nsTo "NEW_DB_NAME.*" /path-to-dump
    

提交回复
热议问题