Tagged Questions
The y2k tag has no wiki summary.
18
votes
11answers
1k views
What is causing the 2010 bugs?
There are a lot of reports of systems failing to understand the year 2010 but I've no idea why. Current systems I look after are working fine as far as I could tell but I'd like to know what the ...
4
votes
1answer
160 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 ...
3
votes
4answers
248 views
Did Oracle face the Y2K problem? [closed]
My guess is that it shouln't have because they use centuries also in dates
From here,
The DATE datatype stores the year (including the century), the month, the day, the hours, the minutes, and ...
3
votes
10answers
409 views
Was there something in Cobol intrinsically making it susceptible to Y2K issues?
I know that a lot of Y2K efforts/scare was somehow centered on COBOL, deservedly or not.
(heck, I saw minor Y2K bug in a Perl scripts that broke 1/1/2000)
What I'm interested in, was there something ...
2
votes
1answer
186 views
Win32: How to prevent DateTimePicker from accepting 2-digit years?
Microsoft's DateTimePicker common control shows ShortDate's according to the configured Locale settings. The customer's computer is configured with a 2-digit year ShortDateFormat (d/M/yy), so the ...
2
votes
5answers
779 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 ...
1
vote
4answers
249 views
How Do I Convert a Y2K Date to SQL DATE In SSIS?
I am using SSIS (SQL 2008) to bring data over from an AS400. The date values are stored in the 400 as a 7 digit numeric. Here is the format: "CYYMMDD" C is a "century digit" where 0 = 1900 and 1 = ...
0
votes
3answers
84 views
why did the y2k bug exist?
The explanation I got for this was that it was common practice for programmers to simply represent the year with 2 digits. But why would anyone do that? If anything I imagine it would take more ...
0
votes
5answers
349 views
Year dropdown range - when do we stop?
I attended a payroll software demo yesterday wherein the year dropdowns throughout the software ran from 2000 to 2200. Now, we've all been down this road before with 2 digit shortsight, but honestly - ...
0
votes
3answers
294 views
Preferred method for handling Y2K date conversions?
Is there a preferred algorithm for converting a 2-digit year into a 4-digit year?
I have a 2-digit birth date (along with month and day) that I want to convert to a C# DateTime. Obiviously, ...