Let's say I have a dynamic schema in MongoDB and one of the BSONDocuments "other" can have different documents with values. For example:

-Other
---Page:25
---Title: WC
---Author: Dickens
+ some others (dynamic)

Another record woul only have one document:

-Other
---Author: None

I am exporting this data to a relational format and would like to export Page, Title, Author as different values in a field called 'Other' and 25, WC, Dickens as corresponding values in a field called 'Other Value'.

In other terms, I would like to loop through possible documents in 'Other' and assign names of these documents to a variable and values of these documents to another value. And 'Other' is not an array...

What is the best way to achieve this?

Thanks,

Pasha

link|improve this question
1  
Post an example of relational format that you want to produce. – Sergio Tulentsev Jan 19 at 19:11
1  
Post also some sample input documents in JSON format to better understand what your starting point is. – Robert Stam Jan 19 at 20:06
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.