Advertisement
Guest User

Untitled

a guest
Jan 25th, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. db.save.find().pretty();
  2. {
  3. "_id" : ObjectId("58884b11e1370511b89d8267"),
  4. "domain" : "google.com",
  5. "emails" : [
  6. {
  7. "email" : "f@google.com",
  8. "first" : "James",
  9. "Last" : "fer"
  10. },
  11. {
  12. "email" : "d@gmail.com",
  13. "first" : "dear",
  14. "last" : "near"
  15. }
  16. ]
  17. }
  18.  
  19. C:MongoDBServerbin>mongoexport.exe -d Trial -c save -o file.csv --type csv --fields domain,emails
  20. 2017-01-25T12:50:54.927+0530 connected to: localhost
  21. 2017-01-25T12:50:54.929+0530 exported 1 record
  22.  
  23. domain,emails
  24. google.com,"[{""email"":""f@google.com"",""first"":""James"",""Last"":""fer""},{""email"":""d@gmail.com"",""first"":""dear"",""last"":""near""}]"
  25.  
  26. > db.sir.find().pretty()
  27. {
  28. "_id" : ObjectId("5888529fa26b65ae310d026f"),
  29. "domain" : "google.com",
  30. "emails" : "[{"email":"f@google.com","first":"James","Last":"fer"},{"email":"d@gmail.com","first":"dear","last":"near"}]"
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement