当前位置:  开发笔记 > 编程语言 > 正文

如何在mongodb中导入csv文件

如何解决《如何在mongodb中导入csv文件》经验,为你挑选了1个好方法。

我有一个包含以下数据的csv文件,并希望在mongodb中导入它

ID;"AdmissionID";"SeatNo";"RegistrationNo";"ResultDate";"ResultStatusId"
1;12;"2323";"23";07-05-2013;1
2;23;"35";"32";10-05-2013;5

此数据将导入mongodb 2.2.我正在使用以下命令:

mongoimport -d test -c exam --type csv --headerline 

使用时我得到以下错误

SyntaxError: missing ; before statement (shell):1

请帮我找出错误



1> flavian..:

这应该很容易做到.更多HERE.

 mongoimport -d mydb -c collectionName --type csv --file myfile.csv --headerline

你的问题是一点点,它看起来没有正确地逃脱

> --headerline
> If using “--type csv” or “--type tsv,” use the first line as field names. Otherwise, mongoimport will import the first line as a distinct
> document.

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有