In earlier versions of MongoDB, you could use the copyDB
command or its helper method, db.copyDatabase()
to copy a database.
MongoDB has since deprecated these. Also, starting in version 4.2, MongoDB has removed the copydb
command, and therefore also the db.copyDatabase()
method, which means that you can’t use them even if you wanted to if you’re using MongoDB 4.2 or later.
Fortunately, there’s another way to copy a MongoDB database.
Continue reading