Planting a Debug Flag in T-SQL

Debug Flag
Are you looking for a way to debug stored procedures in SQL Server? Keep reading for a technique that’s worked ...
Read more

Required SQL Indexes

Required SQL Indexes
If you talk to any data professionals about query performance, they’ll bring up indexes in the first few minutes. For ...
Read more

Delete Duplicate Rows in T-SQL

Delete Duplicate Rows
We don’t live in a perfect world, which means duplicate rows occasionally show up. Sometimes you just need to delete ...
Read more

Storing Big Ugly Tables

Storing Big Ugly Tables
Have you ever had a big ugly table? A table with millions or even billions of rows. Perhaps you wanted ...
Read more

Generate Random Dates In T-SQL

Generate Random Dates T-SQL
Have you ever needed to create a random date in SQL over a group of rows? Whenever I build a ...
Read more

Benefits of SQL Stored Procedures – Maintainability

Benefits of SQL Stored Procedures
Are you trying to convince developers to use Stored Procedures rather than inline SQL or an ORM, say Entity Framework? ...
Read more