12 June 2012
This month’s T-SQL Tuesday is hosted by Aaron Nelson (blog | twitter) with a theme of “logging”. Although Aaron’s definition of this topic is deliberately broad, I thought I would go with a more typical definition and talk about the approach I use for logging the actions of large multi-step stored procedures.
Read the full article →
23 November 2011
Aaron Bertrand (blog | twitter) posted recently about the benefits of the OBJECT_DEFINITION() function when compared to INFORMATION_SCHEMA.ROUTINES when trying to search for a particular string in a very long procedure. He highights how useful the OBJECT_DEFINITION() function and sys.modules DMV are when searching for words or object references in such long SQL modules. OBJECT_DEFINITION() [...]
Read the full article →