标签: mongodb
如何在同一数据库中克隆集合?我想将集合备份为其他名称并运行一些查询。
我尝试了db.getCollection('products').copyTo('products_bck')
db.getCollection('products').copyTo('products_bck')
,但引发以下错误。 "errmsg" : "not authorized on product-servies to execute command { $eval: function (collName, newName)
"errmsg" : "not authorized on product-servies to execute command { $eval: function (collName, newName)
我该怎么做?