December 2013
Intermediate to advanced
1872 pages
153h 31m
English
One way SQL Server can process GROUP BY results is to retrieve the matching detailed data rows into a worktable and then sort the rows and calculate the aggregates on the groups formed. In SQL Server 2012, the Query Optimizer also may choose to use hashing to organize the data into groups and then compute the aggregates.
The hash aggregation strategy uses the same basic method for grouping and calculating aggregates as for a hash join. At the point where the probe input row is checked to determine whether it already exists in the hash bucket, the aggregate is computed if a hash match is found. The following pseudocode summarizes the hash aggregation strategy:
create a hash tablefor each row ...