Top "Mongoimport" questions

The mongoimport utility provides a route to import content into MongoDb, from a JSON, CSV, or TSV export created by mongoexport, or potentially, another third-party export tool.

mongodbimport Failure - FailedToParse: Expecting '{': offset:0

I tried to import a 7.4 MB JSON file via ... mongoimport -d mongoimport -c test --file jsonTest.json But I saw …

json mongodb arrays casbah mongoimport
How to import data containing double quotes into mongodb using mongoimport?

I'm using mongoimport to import a csv file. The csv file contains text with imbedded double quotes on the 2nd …

mongodb csv mongoimport
`fields cannot be identical: ' ' and ' '` mongoimport error

i'm trying to import a csv into mongodb on my local machine. I used the following commmand from the shell: …

mongodb csv mongoimport
Import csv data as array in mongodb using mongoimport

I have been trying to import the csv data into mongodb using mongoimport. The collection is like this: { id:"122234343", name: "…

mongodb mongoimport
Executing mongoimport inside code with Javascript/Node.js

Is there any library available in node.js/javascript that allows an individual to use mongoimport in code? To my …

javascript json node.js mongodb mongoimport
Convert CSV to mongoimport-friendly JSON using Python

I have a 300 mb CSV with 3 million rows worth of city information from Geonames.org. I am trying to convert …

python json csv geospatial mongoimport
mongodb import multiple collections at once

I am using this command mongoimport --db databasename to import a database that I exported using mongoexport. The database has …

mongodb mongoimport mongoexport
How to use mongoimport for specific fileds from tsv file?

I have a .tsv file as follows, Name City Mobile Country A Hyd 877777 IN B Ban 78899 IN Now, i don't …

mongodb mongoimport