Answers for "mongodb purge collection without removing index"

0

drop all indexes mongodb

db.getCollectionNames().forEach(function(collName) { 
    db.runCommand({dropIndexes: collName, index: "*"});
});
Posted by: Guest on December-20-2020
0

$removefromset mongodb

> db.collection.update(
... {"StudentName": "John"},
... {$pull: { "StudentHobby": "Cooking"}});
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
Posted by: Guest on August-25-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language