Skip to content

Instantly share code, notes, and snippets.

@RavenZZ
Last active July 6, 2016 02:58
Show Gist options
  • Select an option

  • Save RavenZZ/1641e4d721073e4a5bcbeb83880d834a to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown
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