vote up 2 vote down star

What is the most expensive software bug / defect you've seen in practice.

There are some famous cases like the Therac 25, but I'm interested to know what issues you've seen yourself or heard of directly. We all have "a friend who used to work at an old company" and would never admit to accidently charging peoples credit cards ourselves.

What problem was caused and why was it caused?

flag
Are these "Most (hilarious|expensive|whatever) [thing] you've seen" questions really necessary? – Tomalak Mar 3 at 10:36
No, just karma-whoring. – ConcernedOfTunbridgeWells Mar 3 at 10:58
I want to draw on people experience and see what mistakes you can learn from in a practical way. – Ian Quigley Mar 3 at 11:11
Then make it community wiki if it is not about the rep. – David Segonds Mar 3 at 11:41
I second the wiki – annakata Mar 3 at 11:48

4 Answers

vote up 1 vote down check

Well, I can share a story:

Long long time ago, I worked for a company that got a contract on maintaining an application that was basically written in Oracle SP's. I had to migrate one of those, and it turns out that I didn't understand the business, so I migrated it as is.

The problem was that the SP didn't do a commit at the end, but returned some data, and the migrated Java code was exactly the same. What the sp did was to write some data to a table, return a document that contained some billing information, but the billing information was never wrote to the database.

What happened next was that we received alot of payments but didn't know how to correlate them with the database data, so we had to do alot of magick to try and associate the payments.

link|flag
vote up 1 vote down

I once shut down CNA's entire risk management system because I didn't understand what an index was on a database field. CNA approved no new Insurance policies for about four hours because the system ground to a halt. I don't know what the financial cost was, but my managers had to engage in some serious damage control.

I will never again ignore the difference between a table scan and an index seek.

link|flag
+1. Ouch. Was there no UAT staging? – Ian Quigley Mar 3 at 19:47
Nope, no UAT, no real System Test, no staging, Nada. There was just development and live. Now that I look back, it was a pretty scary setup. – WindyCityEagle Mar 6 at 14:18
vote up 1 vote down

The Y2K bug.

link|flag
Moral of the story: don't introduce arbitrary limits to facilitate micro-optimizations. Make sure your implementation can grow to handle any remotely reasonable size of values. – flodin Mar 3 at 11:51
vote up 3 vote down

I guess this one (more info) is probably the most costly single failure (500 million USD).

Skizz

link|flag
Did you work on that project? – Ian Quigley Mar 3 at 11:21
No, I didn't work on that. – Skizz Mar 3 at 13:09

Your Answer

Get an OpenID
or

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