vote up 7 vote down star
2

I always use unix timestamps for everything, but am wondering if there is a better way.

What do you use to store timestamps and why?

flag

8 Answers

vote up 9 vote down check

However you choose to store a timestamp, it is important to avoid regional interpretation problems and time offset problems. A Unix timestamp is interpreted the same regardless of region, and is calculated from the same point in time regardless of time zone - these are good things.

Beware storing timestamps as ambiguous strings such as 01/02/2008, since that can be interpreted as January 02, 2008 or February 01, 2008, depending on locale.

When storing hours/minutes/seconds, it is important to know "which" hour/minute/second is being specified. You can do this by including timezone information (not needed for a Unix timestamp, since it is assumed to be UTC).

If you prefer a more human readable format for storage than a Unix timestamp, consider ISO 8601.

One technique that helps keep things straight-forward is to store dates as UTC and only apply timezone or DST offsets when displaying a date to a user.

link|flag
vote up 4 vote down

If you are storing a log file, please for the love of pete make it something human readable and lexically-sortable.

2008-10-07 09:47:02 for example.

link|flag
vote up 3 vote down

32 bit Unix timestamps will overflow in a few years (January 2038), so that might be a consideration. I generally use a DATETIME format in SQL, which is YYYY-MM-DD HH:MM:SS with the time as a 24-hour clock. I try to output to files in the same format, just to make my life easier.

link|flag
2038 for 32bit but most systems are 64bit now – mgb Oct 7 '08 at 14:33
it's 2038 - en.wikipedia.org/wiki/Year_2038_problem – warren Oct 7 '08 at 14:34
Fixed and linked. @mgb - Yes, although I think embedded systems will have the most trouble. – Thomas Owens Oct 7 '08 at 14:36
vote up 3 vote down

What era do you need to store and to what resolution? If you need microseconds, or dates in the stone age time_t might not be the best. For general business purposes it's quite good (assuming 64bit)

link|flag
1  
They didn't have dates in the Stone Age, did they? – Robert L Sep 22 at 2:46
1  
Sure they did - you meet a nice girl, club her over the head and drag her back to your cave - very romantic.... – mgb Sep 22 at 4:07
You do need to calculate dates/times over long periods for things like astronomical events (eclipses etc) the system for this (julian days) starts around 5000bc – mgb Sep 22 at 4:09
vote up 3 vote down

A timestamp is not a good idea on databases, because they do not take daylight savings or the current local time into account. On MySQL it is better to store it as a time, and then use the MySQL date and time functions to retreive the parts you want, or compare to other dates.

link|flag
vote up 2 vote down

A timestamp is bascially:

  • a distinct point in time

And as a point in time has an endless resolution, the important thing on choosing a timestamp format is: has it enough resolution?

For most applications I had, nanoseconds were enough. So Java Timestamp had the right resolution for me so far.

link|flag
vote up 1 vote down

It depends on what you need the timestamps for.

A unix timestamp cannot represent the time 1 second after 2008-12-31T23:59:59Z. If you do '2009-01-01T09:00:00' - '2008-12-31T09:00:00' with unix timestamps the result is NOT correct: there will be a leap second between those two dates and they're separated by 86401 seconds (not 86400 as unix timestamps will tell you).

Other than that and what the other responders said, yes -- unix timestamps are the way to go :)

link|flag
vote up 0 vote down

timeval-style (time_t + microseconds) if I need sub-second accuracy, else just time_t. You can use a 64-bit integer value to store time_t * 1000000 + usec and you are overflow-proof for over +/- 292,000 years.

link|flag

Your Answer

Get an OpenID
or

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