Skip to content

Instantly share code, notes, and snippets.

@lxneng
Created October 15, 2014 03:01
Show Gist options
  • Save lxneng/01b5e2182c4d6f616749 to your computer and use it in GitHub Desktop.
Save lxneng/01b5e2182c4d6f616749 to your computer and use it in GitHub Desktop.
(MongoDB) Drop all databases
db.adminCommand("listDatabases").databases.forEach( function (d) {
if (d.name != "local" && d.name != "admin" && d.name != "config")
db.getSiblingDB(d.name).dropDatabase();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment