MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come eliminare molte raccolte mongodb contemporaneamente?

Per regex puoi usare string.match

db.getCollectionNames().forEach(function(c) {
    if(!c.match("^system.indexes")) { 
        db.getCollection(c).drop();
    }
  });