Writing T-SQL code that is manageable is a worthwhile goal to build upon a solid foundation of understandable and maintainable code. Chapter
3 discussed how you can standardize your T-SQL code. This continued in Chapter
9 with the concept of implementing SQL Coding Standards. The purpose of this foundation was to create a consistent code base for your database. While developing a consistent code base can help improve code quality, this effect is diminished if you are unable to maintain your T-SQL code.
Developing manageable T-SQL code covers many different aspects of writing database code. The previous ...