Quick Sort

The quick sort partitions objects into two groups, one group of the objects with a value above a certain value, and another group with a value below.  Each of these groups is further divided, and this action continues recursively until … Continue reading

TSQL Index Mega-Query

This TSQL query returns a huge amount of useful information about indexes. You can see how much an index is used, how much space it is taking up, what columns are included, etc. It is a great first step towards … Continue reading