从MySQL中导入数据到MongoDB中

Posted 理舞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从MySQL中导入数据到MongoDB中相关的知识,希望对你有一定的参考价值。

从sql中导出需要的数据为csv格式的数据
select field1,field2,...,fieldn from TABLE into outfile /test.csv fields terminated by , optionally enclosed by "" escaped by "" lines terminated by \r\n;

将test.csv数据导入到mongodb中,本人使用的是mongodb-3.2

mongoimport -h "localhost" -d "DATABASE" -c "COLLECTION" -f "field1,field2,...fieldn" --type csv -file "c:\test.csv"

注意:我在在type前有两个“-”号,使用一个“-”会报错













以上是关于从MySQL中导入数据到MongoDB中的主要内容,如果未能解决你的问题,请参考以下文章

从MySQL向Greenplum集群中导入数据

Kettle从文本中导入大量到数据库

在 mongodb 集合中导入 json?

使用参数在 Azure 数据工厂中导入架构

PhpOffice\PhpSpreadsheet 从 excel 错误字符集中导入 mysql

solr6.6教程-从mysql数据库中导入数据