mongodb 本地快速复制collection详解大数据

mongodb 的版本是 3.2.6,storage engine 为 wiredTiger
现在数据库内要完全复制一个collection,可以采用以下方式

原始表:t_table
目标表:t_tmp1

db.createCollection(“t_tmp1”);

db.t_tmp1.createIndex({“custno”:1},{“background”:1})

db.t_table.aggregate({$match: {}}, {$out: ‘t_tmp1’})

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/9846.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论