SQLpassion BLOG

SQLpassion Workshops for Fall 2017

Time goes by, and today I’m very proud to announce all upcoming SQLpassion workshops for the second half of the year 2017: SQL Server Query Tuning Workshop November 6 – 10 in Antwerpen/Belgium SQL Server Performance Tuning Workshop November 20 – 24 in Zurich/Switzerland December 4 – 8 in Frankfurt/Germany Read here how it feels …

SQLpassion Workshops for Fall 2017 + read more

Tracking Lookup Operations in SQL Server

Last week during my SQL Server Performance Tuning Workshop I got quite an interesting question regarding Bookmark Lookup Operations against Clustered Indexes: “How can I find out on which Clustered Index I have the most Lookup Operations performed?” The great thing about SQL Server is that SQL Server logs a lot of information in the …

Tracking Lookup Operations in SQL Server + read more

Cardinality Estimation Limitations

As you might know, SQL Server uses internally Statistics to estimate how many rows are returned from a specific query. That process is called the Cardinality Estimation. Based on the output from the Cardinality Estimation the Query Optimizer generates an Execution Plan, which is cached and finally executed. In today’s blog posting I’m going to talk …

Cardinality Estimation Limitations + read more