1. 在mongodb安装目录的bin目录下有一个数据导出工具:mongoexport.exe,我们可以打开一个命令窗口,切换到该目录下并执行mongoexport,就可以看到使用该工具的很多参数说明。 假设mongodb的安装目录为D:programmongodb,那么可以通过以下方式了解导出工具的使用:
>d:
>D:programmongodbin
>mongoexport --help produce help message
-v [ --verbose ] be more verbose (include multiple time
verbosity e.g. -vvvvv)
--version print the program"s version and exit........ 2. 常用数据导出方式 首先,在MongoDB中新增一个localdb,以及创建集合user并插入一些对象。
>use localdb
>db.user.insert({"name" : "ming", "age" : 2 })
>db.user.insert({"name" : "lisi", "age" : 20 }) 那么,接下来就可以使用以下方式导出user表中的数据。其中,-d代表指明从哪个数据库中导出数据;-c代表从哪个集合中导出数据;-o指明导出的数据输出到哪个文件中。
>mongoexport -d localdb -c user -o user.dat 导出成功后,打开user.dat文件,导出的数据如下所示:{ "_id" : { "$oid" : "4eed9f9ca939118694cf05e4" }, "name" : "ming", "age" : 2 }
{ "_id" : { "$oid" : "4ef1f3cf3bd18218e6bdfa31" }, "name" : "lisi", "age" : "20" } 3. 导出为CVS文件如果要导出集合中指定字段的数据存到CVS文件中,可以使用如下命令:
>mongoexport -d localdb -c user -f _id,name --csv -o user.csv 导出的user.cvs文件的内容如下:{ "_id" : { "$oid" : "4eed9f9ca939118694cf05e4" }, "name" : "ming" }
{ "_id" : { "$oid" : "4ef1f3cf3bd18218e6bdfa31" }, "name" : "lisi" } 4. mongoexport参数列表options:
--help produce help message
-v [ --verbose ] be more verbose (include multiple times for more verbosity e.g. -vvvvv)
--version print the program"s version and exit
-h [ --host ] arg mongo host to connect to ( <set name>/s1,s2 for sets)
--port arg server port. Can also use --host hostname:port
--ipv6 enable IPv6 support (disabled by default)
-u [ --username ] arg username
-p [ --password ] arg password
--dbpath arg directly access mongod database files in the given
path, instead of connecting to a mongod server -
needs to lock the data directory, so cannot be used
if a mongod is currently accessing the same path
--directoryperdb if dbpath specified, each db is in a separate directory
--journal enable journaling
-d [ --db ] arg database to use
-c [ --collection ] arg collection to use (some commands)
-f [ --fields ] arg comma separated list of field names e.g. -f name,age
--fieldFile arg file with fields names - 1 per line
-q [ --query ] arg query filter, as a JSON string
--csv export to csv instead of json
-o [ --out ] arg output file; if not specified, stdout is used
--jsonArray output to a json array rather than one object per line
-k [ --slaveOk ] arg (=1) use secondaries for export if available, default trueEnterprise Manager 无法连接到数据库实例MongoDB数据库中数据的导入相关资讯 MongoDB
- MongoDB 3.3.0 发布下载 (01月14日)
- 使用MongoDB C#官方驱动操作 (12/31/2015 16:27:56)
- CentOS 6.6下安装MongoDB 3.0.1 (12/21/2015 19:29:02)
| - MongoDB 3.2版WiredTiger存储引擎 (01月02日)
- 进程监控工具Supervisor 启动 (12/26/2015 10:49:57)
- MongoDB 3.2.1 RC0 发布下载 (12/18/2015 11:32:29)
|
本文评论 查看全部评论 (0)