One principle that I try to live by is doing my best to do away with redundant tasks. I do this a lot when working with TSQL. Over the years I have seen quite a bit of TSQL written by hundreds of developers and I can't tell you how many times I have seen the same pieces of code copied and pasted over and over again. This not only looks horrible when read but makes simple stored procedures extremely long and hard to read. I'm a believer that extremely long code is written by extremely poor developers. In my mind the shorter the code the better the developer. But that is just what I think.
I was recently faced with the task of optimizing a process where data is loaded into a staging table and then it was processed. Every time an update was made to one table, the same 3 tables had to be updated over again. The original procedure had the same updates over and over again. One of the rules I faced when optimizing this procedure was that I could not create any new objects, only change the existing one. What I ended up doing was creating temporary stored procedures inside. It was like having a GOTO in the procedure where you could keep on processing.
This was an extremely useful find for me and I use it quite often now, everywhere from logging transactions, doing calculations, cleansing data and even processing edi's.
Just wanted to pass this on so it can be used by the world. I have never read of this being done before.
Chad Miles