In MongoDB, I have a document with a field called "ClockInTime" that was imported from CSV as a string.

What does an appropriate db.ClockTime.update() statement look like to convert these text based values to a date datatype?

link|improve this question

I would like to execute this statement in the Mongo shell as an in-place update. – Jeff Fritz May 24 '10 at 22:07
feedback

1 Answer

up vote 14 down vote accepted

This code should do it:

> var cursor = db.ClockTime.find()
> while (cursor.hasNext()) {
... var doc = cursor.next();
... db.ClockTime.update({_id : doc._id}, {$set : {ClockInTime : new Date(doc.ClockInTime)}})
... }
link|improve this answer
That worked... thx... – Jeff Fritz May 24 '10 at 22:47
@Kristina - Phew, this saved a ton of my time and thanks to the author for asking such question. – RakeshS Oct 22 '11 at 13:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.