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

Hvordan sletter man mange mongodb-samlinger på én gang?

Til regex kan du bruge string.match

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


  1. Indstil Mongo Timeout i Spring Boot

  2. Forårssession med MongoDB

  3. Tilslutning til MongoDB-databaser

  4. Adgang til Meteor produktionsdatabase