In earlier versions of MongoDB, you could use the db.collection.copyTo()
method to copy a collection.
MongoDB has since deprecated that method. Also, starting in version 4.2, MongoDB has removed the eval
command. Given db.collection.copyTo()
wraps eval
, this means that you can’t use either of them if you’re using MongoDB 4.2 or later.
Fortunately, there’s another way to copy a MongoDB collection.
Continue reading