Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
   db.foo.find().limit(300)

won't do it... it still prints out 20

   db.foo.find().toArray()
   db.foo.find().forEach(printjson)

will both print out very expanded view of each document instead of the 1-line version for find():

share|improve this question

4 Answers

up vote 81 down vote accepted

DBQuery.shellBatchSize = 300

share|improve this answer

You can use it inside of the shell to iterate over the next 20 results. Just type it if you see "has more" and you will see the next 20 items.

share|improve this answer
2  
oh it is really about how to print out all without using it – 動靜能量 Sep 14 '10 at 1:37

from the shell if you want to show all results you could do db.collection.find().toArray() to get all results without it

share|improve this answer
This helped me :) – GeekedOut Jun 4 '12 at 15:15

Could always do:

db.foo.find().forEach(function(f){print(tojson(f, '', true));});

To get that compact view.

Also, I find it very useful to limit the fields returned by the find so:

db.foo.find({},{name:1}).forEach(function(f){print(tojson(f, '', true));});

which would return only the _id and name field from foo.

share|improve this answer

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.