MongoDB导入导出命令

(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

相关推荐
Dnui_King6 小时前
MongoDB 复制集实战
mongodb
可待电子单片机设计定制(论文)6 小时前
【51单片机】基于单片机的智能门禁系统设计
单片机·mongodb·51单片机
这个懒人6 小时前
MongoDB 核心机制解析
数据库·mongodb·nosql
WCL-JAVA6 小时前
Docker快速安装MongoDB并配置主从同步
mongodb·docker·容器
-一杯为品-1 天前
【STM32单片机】#4 OLED调试&外部中断
stm32·单片机·mongodb
柒月玖.2 天前
基于AT89C52单片机的轮胎压力监测系统
单片机·嵌入式硬件·mongodb
啞謎专家2 天前
在rockylinux9.4安装mongodb报错:缺少:libcrypto.so.10文件库
数据库·mongodb
算家云2 天前
Ubuntu 22.04安装MongoDB:GLM4模型对话数据收集与微调教程
大数据·人工智能·mongodb·ubuntu·elasticsearch·算家云·glm4微调
陈阳羽3 天前
云服务器Ubuntu安装宝塔面板MongoDB修改配置文件本地连接
服务器·mongodb·ubuntu
未兆4 天前
dbeaver连接mongodb 插入日期变成了字符串
数据库·mongodb