Skip to content

Instantly share code, notes, and snippets.

@sumn2u
Created July 11, 2015 16:46
Show Gist options
  • Save sumn2u/de6cf7dc8f42b199da60 to your computer and use it in GitHub Desktop.
Save sumn2u/de6cf7dc8f42b199da60 to your computer and use it in GitHub Desktop.
To remove all collections documents in MongoDB
db.getCollectionNames().forEach(function(c) {
if(!c.match("^system.indexes")) {
db.getCollection(c).remove({});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment