(1)mongoexport命令
例如:
mongoexport –db testdb —collection person —out person.json
mongoexport –db testdb —collection person —fields name,age —out person.json
mongoexport –db testdb —collection person —query ‘{“name“:”tom”}’ —out person.json
mongoexport –db testdb —collection person —sort {“age”:1} —type csv —fields name,age —out person.csv
mongoexport –db testdb —collection person —limit 1 —skip 1 —out person.json
(2)mongodump命令
mongodump —host [ip] –port [p] —username [u] —password [p] –db [db] —collection [c] —query [query] —out [目录] –gzip
其中,–gzip表示使用Gzip压缩存档
例如:
mongodump –db testdb —out /home –gzip
(3)mongorestore命令
mongorestore —host [ip] –port [p] —username [u] —password [p] –db [db] —collection [c] —dir [目录] —drop –gzip
其中,–drop表示导入前删除数据库中集合
例如:
mongorestore –db testdb —dir testdb —drop –gzip
原文地址:https://blog.csdn.net/vinegar93/article/details/134705324
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_17791.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!