mongodb中复制(备份)collection,复制数据库
db.new_product.find().forEach(function(x){db.tt.insert(x)})原collection为new_product 复制到tt表中 复制本地数据库到本地,原名,现名db.copyDatabase("wenshu","wenshu","localhost")复制云数据库到本地,原名,现名
·
db.new_product.find().forEach(function(x){db.tt.insert(x)})
原collection为new_product 复制到tt表中
复制本地数据库到本地,原名,现名
db.copyDatabase("wenshu","wenshu","localhost")
复制云数据库到本地,原名,现名,ip,用户名,密码
db.copyDatabase("wenshu","wenshu","192.168.50.247:27015")
更多推荐
已为社区贡献4条内容
所有评论(0)