vote up -2 vote down star

Based on the question asked here for *nix fellows, I 'm wondering how about programming in general.

I just had one of my colleague did something like this on SQL SERVER.

Update [Transaction] set [Amount]=0 where @UserId = @UserId

Forgetting to remove the @ in the condition which set the condition to be always true, and he ran the query on the production server. Guess what happened to all the transactions in the system.We had a hard time to restore the DB. And we all learned an important lesson.

The reason I share this because from mistakes we learn.

What's yours ?

flag

75% accept rate
This should be a WIKI! – danimajo Nov 24 '08 at 21:56
This has been asked over and over... – Michael Haren Nov 24 '08 at 21:57
stackoverflow.com/search?q=Mistake – Michael Haren Nov 24 '08 at 21:58
duplicate - one of many - stackoverflow.com/questions/63668/… – Brett McCann Nov 24 '08 at 21:59

closed as exact duplicate by Noah Goodrich Nov 24 '08 at 22:00

3 Answers

vote up 1 vote down

Failing to write unit tests

link|flag
vote up 1 vote down

Back in 2001 I had a PHP execution error, missing a } or a ; somewhere but it would only give me the error at the last line of code. Back then I didn't have a code parsing IDE, I was just using a text editor. I looked around the code for 4 hours before giving up.... and I just rewrote that file in about 3hrs.

link|flag
vote up 1 vote down

My first job out of college, the task was to modify a C code generator, that took in a spec file, and output a bunch of networking packet definitions. The modification was to increase the length of the "character description field." This library would run on an embedded OS.

The field was defined using a constant, so I doubled the value, from 256 to 512.

A few months later, a dev was researching why the library ballooned from 1MB in size to 50MB in size.

Turns out that constant is also used to allocate memory, and it's value is squared.

Whoopsie!

link|flag

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