Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two collections in my mongodb namely

1.companies

2.contacts

Both the companies and contact collection are interlinked. I want to export a particular companies contact into a csv. I have tired a mongo export command as follows

 mongoexport --csv -d dbname -c contacts 
 -q {"employment_details.company_id":ObjectId("50926cff9fe3125819006dc7")}; 
 -f {"first_name","last_name","title"} -o export.csv

I get a error as follows

SyntaxError: missing ; before statement (shell):1.

Please help me. Thanks in Advance

share|improve this question
Did u try looking into the mongodb documentation – Abhay Kumar Nov 27 '12 at 4:12
@AbhayKumar yes from that only i found about mongo export. – SRIRAM Nov 27 '12 at 4:13
can you please paste some of your data form the collection – Abhay Kumar Nov 27 '12 at 4:31

1 Answer

up vote 5 down vote accepted

There could be a couple of things going on here. First, are you running mongoexport from the command line or from the mongo shell? The mongoexport command is run from the command line.

Secondly, you need to properly format the query and field parameters. You could enclose the query with single quotes, and the filed name is not a JSON document, but just a list of fields.

This would look like the following from the command line:

mongoexport --csv -d dbname -c contacts -q '{"employment_details.company_id":ObjectId("50926cff9fe3125819006dc7")}' -f "first_name","last_name","title" -o export.csv
share|improve this answer
assertion: 10340 Failure parsing JSON string near: '{employme..I got this error – SRIRAM Nov 27 '12 at 4:37
what version are you using? Exporting a sample document with 2.2.1 returns no errors. Could you post a sample document - I've guessed at the structure in the format that is suggested by your command, but I could be incorrect. – Andre de Frere Nov 27 '12 at 4:51
I am using 2.0.6 version – SRIRAM Nov 27 '12 at 4:56
I've just tried with 2.0.6 and also not seeing an error. Could you post the document you get from db.contacts.find({"employment_details.company_id":ObjectId("50926cff9fe31258190‌​06dc7")}) when you try it from the mongo shell? – Andre de Frere Nov 27 '12 at 5:01
thanks @andre de Frere I got the answer. I missed the backslash before double quotes – SRIRAM Nov 27 '12 at 5:07
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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