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 9230393
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:48:51+00:00 2026-06-18T05:48:51+00:00

I am playing around in the mongodb-shell trying to learn about mongodb , and

  • 0

I am playing around in the mongodb-shell trying to learn about mongodb, and noticed that db.stats() shows number of collections to be 1 more than what is shown by db.getCollectionNames()

Here is the example:

> db.stats();
{   
  "db" : "learn",
  "collections" : 6,
  "objects" : 47, 
  ...
  ...

  "ok" : 1 
}   

> db.getCollectionNames();
[ "hit_stats", "hits", "system.indexes", "system.profile", "unicorns" ]

So db.stats says there are 6 collections where as db.getCollectionNames lists only 5 collection names. Why this discrepancy?

  • 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-06-18T05:48:52+00:00Added an answer on June 18, 2026 at 5:48 am

    You see this discrepancy because the system.namespaces collection which stores collection-information does not include itself. Example with 2 collections (items and user):

    > db.system.namespaces.find()
    { "name" : "test.system.indexes" }
    { "name" : "test.items.$_id_" }      // index
    { "name" : "test.items" }
    { "name" : "test.users.$_id_" }      // index
    { "name" : "test.users" }
    
    > db.stats()['collections']
    4
    
    > db.getCollectionNames()
    [ "items", "system.indexes", "users" ]
    

    As you can see system.namespaces does not include itself. db.stats() does include it in its calculation hence the 1 collection difference. Hope this makes sense.

    Also see these bug reports SERVER-1162 and SERVER-1308.

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

Sidebar

Related Questions

Playing around with MongoDB and NoRM in .NET. Thing that confused me - there
I was playing around with mongodb on PHP and I noticed something strange, look
Just playing around with java trying to learn it etc. Here is my code
While playing around with some hooks I noticed that the output from the hooks
I'm playing around with this tutorial that uses Sinatra, backbone.js, and mongodb for the
Playing around with xpath expressions trying to learn it. I found a code snippet,
Whilst playing around with an nhibernate mapping, I noticed that a property setter I
Playing around with my web application in the iOS 5 simulator, I noticed that
Playing around with MSVC++ 2005, I noticed that if the same class is defined
I'am currently playing around with MongoDB using its C# driver, trying each method in

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.