MongoDB数据导出成CSV

# articles

mongoexport -d mean-npbao -c articles --type=csv -f _id,type,title,author,brief,html,content,urls,client,created -o /root/hmg/articles.csv

mongoexport -d mean-npbao -c articles --type=csv -f _id,type -o /root/hmg/articles/type.csv

mongoexport -d mean-npbao -c articles --type=csv -f _id,title -o /root/hmg/articles/title.csv

mongoexport -d mean-npbao -c articles --type=csv -f _id,author -o /root/hmg/articles/author.csv

mongoexport -d mean-npbao -c articles --type=csv -f _id,brief -o /root/hmg/articles/brief.csv

mongoexport -d mean-npbao -c articles --type=csv -f _id,html -o /root/hmg/articles/html.csv

mongoexport -d mean-npbao -c articles --type=csv -f _id,content -o /root/hmg/articles/content.csv

mongoexport -d mean-npbao -c articles --type=csv -f _id,urls -o /root/hmg/articles/urls.csv

mongoexport -d mean-npbao -c articles --type=csv -f _id,client -o /root/hmg/articles/client.csv

mongoexport -d mean-npbao -c articles --type=csv -f _id,created -o /root/hmg/articles/created.csv

# clients

mongoexport -d mean-npbao -c clients --type=csv -f _id,uuid,name,icon,city,sex,created -o /root/hmg/clients.csv

mongoexport -d mean-npbao -c clients --type=csv -f _id,uuid -o /root/hmg/clients/uuid.csv

mongoexport -d mean-npbao -c clients --type=csv -f _id,name -o /root/hmg/clients/name.csv

mongoexport -d mean-npbao -c clients --type=csv -f _id,icon -o /root/hmg/clients/icon.csv

mongoexport -d mean-npbao -c clients --type=csv -f _id,city -o /root/hmg/clients/city.csv

mongoexport -d mean-npbao -c clients --type=csv -f _id,sex -o /root/hmg/clients/sex.csv

mongoexport -d mean-npbao -c clients --type=csv -f _id,created -o /root/hmg/clients/created.csv

# discusses

mongoexport -d mean-npbao -c discusses --type=csv -f _id,str,article,client,toClient,created -o /root/hmg/discusses.csv

scp /root/hmg.zip  [email protected]:/root

zip -r hmg.zip hmg/

select *

into outfile ‘/usr/local/mysql/rea_tpc1.TXT‘

fields terminated by ‘,‘ optionally enclosed by ‘‘‘‘

lines terminated by ‘\n‘

from `rea_tpc`;

时间: 2024-12-24 11:08:34

MongoDB数据导出成CSV的相关文章

es实战之数据导出成csv文件

从es将数据导出分两步: 查询大量数据 将数据生成文件并下载 本篇主要是将第二步,第一步在<es实战之查询大量数据>中已讲述. csv vs excel excel2003不能超过65536, excel2007及以上版本支持1048576条数据.excel支持的数据量有限,并且生生成文件的速度比较慢. csv具有支持写入量大,文件较小的优点. 故选择csv作为导出文件类型. 导出文件的几种方式: 将数据从es中查询出来,在这个大前提下,对比导出文件的速度. 由前端处理 直接将数据返回给前端,

【MySQL】数据导出成CSV格式

一.自动输出中文字符集 select * from db into outfile 'test.csv' CHARACTER SET gbk fields terminated by ',' optionally enclosed by '"' escaped by '"' lines terminated by '\r\n'; 二.导出后转换字符集 转换成CSV文件,如果乱码将CSV已记事本打开另存为UTF8 select * from db into outfile 'test.c

数据导出到csv

3.mysql -h jconnjkgiw4vh.mysql.rds.aliyuncs.com -u jusr27zkky8u -pl9cMqv0Rjdi base_ccms_ygaor -sNe "select date(created),order_num,response_num,(response_num/order_num) as lv,send_num,response_amount,(response_amount/(send_num*0.05)) from tb_tc_urpay

C# 泛型List对象数据 导出 成 EXCEL数据表

1          /// <summary>  2         /// 将一组对象导出成EXCEL  3         /// </summary>  4         /// <typeparam name="T">要导出对象的类型</typeparam>  5         /// <param name="objList">一组对象</param>  6         //

Mongodb数据导出命令mongoexport和导入命令mongoimport介绍

转载:http://blog.csdn.net/rangqiwei/article/details/15816013 一.导出工具mongoexport Mongodb中的mongoexport工具可以把一个collection导出成JSON格式或CSV格式的文件.可以通过参数指定导出的数据项,也可以根据指定的条件导出数据.mongoexport具体用法如下所示: Shell代码   [[email protected] mongodb]# ./bin/mongoexport --help Ex

Mongodb数据导出工具mongoexport和导入工具mongoimport使用

如图所示,两个工具位于mongodb安装目录的bin目录下 下面介绍一下两者的使用方法: 一.导出工具mongoexport Mongodb中的mongoexport工具可以把一个collection导出成JSON格式或CSV格式的文件.可以通过参数指定导出的数据项,也可以根据指定的条件导出数据. 可通过 mongoexport --help 命令查看具体使用方法 参数说明: -h:指明数据库宿主机的IP -u:指明数据库的用户名 -p:指明数据库的密码 -d:指明数据库的名字 -c:指明col

hive表数据导出到csv乱码原因及解决方案

转载自http://blog.csdn.net/lgdlxc/article/details/42126225 Hive表中的数据使用hive - e"select * from table">aa.csv导出到csv文件的时候在window中用Excel打开查看的时候是乱码,而且格式也不对. 原因有下面两个: 1.乱码的原因是用excel打开csv时格式默认为gbk,但是从hive中导出来的是utf8的 2.格式不对的原因是csv文件的列分隔符是逗号或者\t,而hive中默认使

MongoDB数据导出、导入及索引建立

(1)    数据导出--每个表一个文件: # mongoexport --db project --collection 表名 --out 输出文件名,如: # mongoexport --db project --collectionstock --out stock.json,导出所有F10数据到文件/root/stock.json中 (2)    数据导入--每个表一个文件: # mongoimport --db users --collection 表名 --file输入文件名 (3)

MongoDB数据导入导出成csv或者json

1. 从远程数据表拉取数据到本地json文件 mongoexport --host 远程服务器IP --port 远程服务器端口 --username 远程数据库用户名 --password 远程数据库密码 --db 数据库名 --collection 数据表名 -q "{_id: ObjectId('')}" --out /home/user/Public/table.json 2. 将本地json文件导入到本地数据库 mongoimport --db 本地数据库名 --collec