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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:22:37+00:00 2026-05-28T14:22:37+00:00

I have a collected named foo hypothetically. Each instance of foo has a field

  • 0

I have a collected named foo hypothetically.

Each instance of foo has a field called lastLookedAt which is a UNIX timestamp since epoch. I’d like to be able to go through the MongoDB client and set that timestamp for all existing documents (about 20,000 of them) to the current timestamp.

What’s the best way of handling this?

  • 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-28T14:22:38+00:00Added an answer on May 28, 2026 at 2:22 pm

    Regardless of the version, for your example, the <update> is:

    {  $set: { lastLookedAt: Date.now() / 1000 }  }
    

    However, depending on your version of MongoDB, the query will look different. Regardless of version, the key is that the empty condition {} will match any document. In the Mongo shell, or with any MongoDB client:

    $version >= 3.2:

    db.foo.updateMany( {}, <update> )
    
    • {} is the condition (the empty condition matches any document)

    3.2 > $version >= 2.2:

    db.foo.update( {}, <update>, { multi: true } )
    
    • {} is the condition (the empty condition matches any document)
    • {multi: true} is the “update multiple documents” option

    $version < 2.2:

    db.foo.update( {}, <update>, false, true )
    
    • {} is the condition (the empty condition matches any document)
    • false is for the “upsert” parameter
    • true is for the “multi” parameter (update multiple records)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have a web application which has been developed over the past 7 months.
I have a garbage-collected CoreData app, which is used by a few of my
I have the following code: Tag.find_all_by_company_id(4).each.collect{|tag| tag.name }.join(,) (Essentially I'm trying to build a
I used BeautifulSoup to handle XML files that I have collected through a REST
If I have some xml containing things like the following mediawiki markup: ...collected in
I have a number of objects collected in an array. The same objects are
My site have a number of different persons each representing different diseases. I made
I have a CookieContainer extracted from a HttpWebRequest/HttpWebResponse session named CookieJar . I want
I have to send sensitive information (name, address, social security number etc.) collected from
I have a QT application. It has functioning QPushButtons that are connected to slots

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.