How to export all the record in mongodb to csv ?

mongoexport --host localhost --db dbname --collection name --csv > test.csv

This asks me to specify name of the fields I need to export. Can I just export all the fields without specifying the name of fields?

link|improve this question

50% accept rate
feedback

1 Answer

mongoexport  --help
....
-f [ --fields ] arg     comma separated list of field names e.g. -f name,age
--fieldFile arg         file with fields names - 1 per line

You have to manually specify it and if you think about it, it makes perfect sense. MongoDB is schemaless, CVS, on the other hand, has a fixed layout for columns. Without knowing what fields are used in different documents it's impossible to output the CVS dump.

If you have a fixed schema perhaps you could retrieve one document, harvest the field names from it with a script and pass it to mongoexport.

link|improve this answer
1  
I was just searching if I could get the list of fields from the a record. i.e from db.collection.finOne().getFields(). But I guess that is not the right method(getFields). I tried getKeys() as well. Otherwise I will have to get the record with key:value hashes. – Succeed Stha Jul 25 '11 at 9:56
I'm trying to do the same thing, but to figure out why it isn't import csv files properly. In my case, I need it to tell me everything about itself, including which fields it "invented" by itself. So in my case it doesn't make perfect sense to have to specify the fields, because I don't know what they all are! – Stephen Oct 31 '11 at 18:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.