Last active
August 29, 2015 13:55
-
-
Save normgraham/8716714 to your computer and use it in GitHub Desktop.
Validate all collections in a database
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
| var validateCollections = function(dbname) { | |
| var vdb = db.getMongo().getDB(dbname); | |
| vdb.getCollectionNames().forEach(function(coll) { | |
| printjson(vdb[coll].validate(true)); | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment