The "Year 2038 problem", a.k.a. Unix Millennium Bug, affects systems that use a signed 32-bit integer for the number of seconds since the "unix epoch" or 00:00:00 January 1, 1970. For such systems, the maximum date they are capable of expressing is 03:14:07 January 19, 2038.

learn more… | top users | synonyms (2)

2
votes
1answer
624 views

Converting timestamps larger than maxint into datetime objects

I have some code for converting some timestamps stored as strings into datetime objects and noticed today exceptions when it converts dates with an int timestamp value greater than the max int. ...
1
vote
4answers
350 views

What is year 2038 problem? How to find out if the existing code has that problem and solve it? [duplicate]

Possible Duplicate: What should we do to prepare for 2038? What is year 2038 problem? How to find out if our code has that problem and solve it?
3
votes
4answers
2k views

Why do timestamps have a limit to 2038?

I just found out, running a calendar script, that timestamps in PHP has a limit to 2038. What does it really mean? Why is it 2038 instead of 2050 or 2039? Why a limit if timestamps just count seconds ...
5
votes
2answers
419 views

time(); after 2038?

Will the php function time(); be functional after the year 2038?
0
votes
3answers
77 views

Time as a Signed Integer

I've been reading up on the Y2038 problem and I understand that time_t will eventually revert to the lowest representable negative number because it'll try to "increment" the sign bit. According to ...
6
votes
5answers
885 views

Why should a Java programmer care about year 2038 bug?

Year 2038 Bug is all over the web, But this seems to be a unix issue. How will this affect java Date ?
14
votes
5answers
5k views

PHP & mySQL: Year 2038 Bug: What is it? How to solve it?

I was thinking of using TIMESTAMP to store the date+time, but I read that there is a limitation of year 2038 on it. Instead of asking my question in bulk, I preferred to break it up into small parts ...
2
votes
5answers
1k views

Is there a y2k12 issue analogous to y2k?

This is a bit of a whimsical question inspired in part by the publicity for the movie 2012 but it is one that could have real implications for software systems. (If not in 2012, then definitely in ...
4
votes
1answer
211 views

Handling Y2.036K & Y2.038K bugs

I am currently working on a project with a requirement that our software must operate until at least 2050. Recently we have run into problems dealing with the Y2.036K "bug" in the NTP protocol and ...
5
votes
3answers
1k views

How to use time > year 2038 on official Windows Python 2.5

The official Python 2.5 on Windows was build with Visual Studio.Net 2003, which uses 32 bit time_t. So when the year is > 2038, it just gives exceptions. Although this is fixed in Python 2.6 (which ...
37
votes
10answers
2k views

What should we do to prepare for 2038?

I would like to think that some of the software I'm writing today will be used in 30 years. But I am also aware that a lot of it is based upon the UNIX tradition of exposing time as the number of ...