How to copy a collection from one database to another in MongoDB

前端 未结 19 1593
無奈伤痛
無奈伤痛 2020-11-28 00:22

Is there a simple way to do this?

19条回答
  •  醉话见心
    2020-11-28 01:07

    This can be done using Mongo's db.copyDatabase method:

    db.copyDatabase(fromdb, todb, fromhost, username, password)
    

    Reference: http://docs.mongodb.org/manual/reference/method/db.copyDatabase/

提交回复
热议问题