Last active
January 2, 2016 20:49
-
-
Save bds/8359654 to your computer and use it in GitHub Desktop.
Mongo console commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
show dbs | |
use my_db | |
show collections | |
db.printCollectionStats() | |
db.things.find( {}, { _id:1 } ) # All documents ids | |
db.things.find ( { _id: ObjectId("daf3424234dsf12334f") } ).count() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment