http://www.perlmonks.org?node_id=163183


in reply to The fine art of database programming

Great post, ++

I'd like to add one more thing to common pitfall list: the rule of exponential costs

It really works... I've 'tried' it writing my first database program. Discovering fundamental mistakes and their results (like changing database layout when program is almost finished), etc. leads you to the point, when you spend much more time changing your code (changing != improving) than writing/adding a new one. So costs (not only time costs) rise exponentially with time. Now I know that spending even few days normalizing your database decreases total costs of developement process and then to write a program is just to code rules and actions planned during normalization process.

Greetz, Tom.