Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7593319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T21:08:23+00:00 2026-05-30T21:08:23+00:00

Is there a way to delete objects from multiple collections? Like delete everything in

  • 0

Is there a way to delete objects from multiple collections? Like delete everything in this 5 collections command in MongoDB?

It is kind of time consuming to go and manually delete from each collection in a Mongo database.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T21:08:24+00:00Added an answer on May 30, 2026 at 9:08 pm

    As Andrew mentioned, there is no built in way to do this, but you can use Javascript to get what you want. For example, if I wanted to drop a list of databases quickly (and dirtily, this is just a proof-of-concept code sample!):

    var deletelist = ["deleteme1", "deleteme2", "deleteme3"]
    deletelist.forEach(
        function deletedbs(name) {
            db = db.getMongo().getDB( name );
            db.dropDatabase();
            print(name + " deleted");
        }
    )
    

    No error checking of course, but this kind of server side script will work for cross-collection and cross-database functionality. If you wanted to run something on all your databases, then you could construct the list like this:

    var allDBs = db.getMongo().getDBNames()
    for(var name in allDBs){
          db = db.getMongo().getDB( name );
          db.<command to execute on each DB>;
     }
    

    Of course, you need to be very, very careful when running things like this so you avoid destroying your database, so test extensively and use judiciously 🙂

    For more on server side JS, check out the MongoDB docs here:

    http://www.mongodb.org/display/DOCS/Server-side+Code+Execution

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to delete a folder, lets call it FolderX from an
Is there better way to delete a parameter from a query string in a
Is there an easy way to delete an element from an array using PHP,
Is there any way to check if it is safe to delete record from
Is it bad/illegal C++ to delete manually objects from a stack or there are
Is there a way to NOT delete files after an uninstall?
Is there any way to find out if the user pressed the delete key
In PHP, I know there is no official way to delete items once they
I need a way to recursively delete a folder and its children. Is there
I need to delete some objects from an ArrayList if they meet a condition

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.