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 ?
