vote up 0 vote down star

Edit: Apparently I need to search more thoroughly before I post! :-P This is a dupe of another question.

I find that learning from other people's mistakes can sometimes be just as helpful as learning from other people's best practices. Sites like TheDailyWTF, while mostly humorous, are still informative in their own way.

So with that in mind, what is the biggest programming snafu you've committed?

flag

52% accept rate

closed as exact duplicate by Chris Upchurch Sep 18 '08 at 18:27

11 Answers

vote up 3 vote down

Pants-crap mid workday.

link|flag
vote up 2 vote down

Here's a good list

link|flag
vote up 1 vote down

I set the account balances of 70000 debtors to 80cents. This was because I was working on the production database, and the I forgot to highlight the "where" clause in the update statement before I pressed execute. The SQL frontend I was using was also buggy, and always had Auto-Commit set to true no matter what, so I couldn't perform a rollback. I managed to fix it within half an hour though (pulled out the network cable before the results could be fully replicated throughout the country). Then I restored the previous day's backup, and updated the balances from the log file. Nobody noticed, but the ordeal probably took 5 years off my lifespan.

link|flag
vote up 1 vote down

I had a block oriented data file class once that was absolutely central to an important sensor processing application at a long-term client. It had an internal structure a lot like a simplified FAT filesystem: allocation table, subdirectories, files, etc.

I took pride in being somewhat performance oriented... maybe not to extremes, but at least I was making sure the design was such that any serious bottlenecks were avoided.

Back to this sensor processing application. Once the files started to get above about 50-100 meg, a simple data read was taking up to a few hundred milliseconds, and I was ignoring it for years as just an IO bottleneck.

It turns out the initial block offset lookup was not getting copied into the file read properly, resulting in the read function reading from the BEGINNING OF THE FILE every single read, until it got to the blocks it wanted and copied them into the waiting buffer. Every graph on the screen called this disk read function 4-8 times a second, so you can imagine the effect this had.

Due to file caching, most of the disk read was in memory and so it came back very quickly.

This bug existed for MANY years, and once I fixed it the entire application became about 10 times more responsive.

Oops.

link|flag
vote up 1 vote down

Sort of deleted about 300,000 highly sensitive rows of customer data.. luckily, I was able to restore from a recent backup. Note to self: Don't forget to specify a where clause in your "delete from" queries.

link|flag
I think the SQL designers really messed up with that. They could have required the keyword ALL for any DELETE or UPDATE that doesn't have a WHERE – JoelFan Feb 13 at 3:40
vote up 0 vote down

SQL delete without a 'where' clause. Deleted 120,000 rows when I meant to delete like 10.

link|flag
vote up 0 vote down

Deciding to use PHP for my new website.

link|flag
vote up 0 vote down

yup, the sql delete has gotten me too. don't forget to wrap your deletes, updates, and inserts in a transaction. that way when you see 1,000,000 records deleted, you can rollback, and put the cardiac arrest paddles away.

link|flag
vote up 0 vote down

Left a test message that said "Uh Oh. Something terrible has just happened!! Quick! Run and get some help!" in a production COBOL program, back in my early days. Those where the days when it took Papal dispensation in order to change a production program. So the message stayed in there for a day or two until the paperwork was filled out to make a coding change.

link|flag
vote up 0 vote down

Made a site for someone that took credit cards for it to work (kinda the whole idea, that the customer pay), found out a month later that that part did not work :S

That's not a good thing, when you are launching a new site :)

link|flag

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