🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

When connect to MongoDB date time data are converted to unix timestamp, How come?

User: "Taa"
New Altair Community Member
Updated by Jocelyn


Find more posts tagged with

Sort by:
1 - 3 of 31
    User: "sgenzer"
    Altair Employee
    hi @Taa hmm I have no idea why that is being converted to epoch time but it's easily remedied with the Numerical to Date operator. :smile:
    User: "David_A"
    New Altair Community Member
    Hi,

    if I remember it was because in the mongoDB entries it wasn't possible to store dates consistently.
    As Scott correctly pointed out, parsing the dates afterwards can be easily done. The other way round (transforming the date into a String of your desired format) can be done with Generate Attribute.

    Best,
    David
    User: "kayman"
    New Altair Community Member
    Updated by kayman
    Mongo date format is ISO UTC format on display, but in reality just a numeric value. So when you import the date format is the numeric representation. As already mentioned numeric to date format converts it back to a date format, but basically it remains the same number behind the scenes.

    Storing a date back to Mongo is therefore easiest done by using the numeric Epoch format and adding .$date to your attribute. Mongo will then nicely convert it again to ISODate format.