Skip to content

Instantly share code, notes, and snippets.

@RavenZZ
Last active July 6, 2016 02:58
Show Gist options
  • Save RavenZZ/1641e4d721073e4a5bcbeb83880d834a to your computer and use it in GitHub Desktop.
Save RavenZZ/1641e4d721073e4a5bcbeb83880d834a to your computer and use it in GitHub Desktop.
Drop All Mongodb Indexes
use taskcenter
var collections = db.getCollectionNames()
collections.forEach((tableName)=>{
if(tableName !=="system.profile"){
print(`db.${tableName}.dropIndexes()`);
}
});
@RavenZZ
Copy link
Author

RavenZZ commented Jul 6, 2016

执行结果
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment