Answers for "mongodb delete all collections in db ubuntu"

Go
0

mongo remove all dbs

mongo --quiet --eval 'db.getMongo().getDBNames().forEach(function(i){db.getSiblingDB(i).dropDatabase()})'
Posted by: Guest on September-14-2020
0

mongodb command delete all

db.collention.deleteMany() 

// db.collection.remove() id deprecated.
Posted by: Guest on March-12-2022

Code answers related to "mongodb delete all collections in db ubuntu"

Browse Popular Code Answers by Language