In this post I cover some unpleasant side-effects of using heaps in SQL Server for anything else than staging tables. In the past couple of months I’ve been running into …
performance
-
-
I recently ran into SQL Server’s page compression being applied to a heap, and I figured I’d cover why that won’t work how some folks expect. SQL Server’s page compression …
- PerformancePowerShellSQL Server
Diagnosing SQL Server with PSBlitz – 3-year anniversary post
by Vlad DrumeaThis post is an overview of PSBlitz, how I use it in diagnosing SQL Server issues, and the notable changes it went through over the past 3 years. Intro In …
-
There’s this weird misconception floating around LinkedIn and reddit that SQL Server CTEs somehow store results in either memory or tempdb. This is wrong and whoever states that CTEs store …
- PerformanceSQL Server
Does Query Store plan forcing work on queries using the RECOMPILE hint?
by Vlad DrumeaIt’s 3AM and I’m curious if Query Store plan forcing works on queries that use the RECOMPILE hint (aka OPTION(RECOMPILE) ).So might as well make a blog post out of …
- PerformanceSQL Server
The VM CPU configuration mistake that is hurting your SQL Server performance and wasting licensing money
by Vlad DrumeaIn this post I cover a fairly common VM CPU configuration mistake that may end up hurting your SQL Server’s performance and wasting licensing money. Intro It’s not uncommon that …
-
In this post I cover ways to fix performance problems caused by implicit conversion when the query cannot be modified. What is an implicit conversion? I’ve already covered, in detail, …
-
In this post I show a few examples of implicit conversions in SQL Server and the impact they can have on query performance. Types of conversions in SQL Server If …
-
This is a really short post covering the cause and fix for slow/poor VirtualBox VM performance on Windows hosts. So in one of my previous posts I’ve enabled a Windows …
-
In this post I cover a script I’ve put together for measuring storage write speeds in SQL Server, namely against database data files. This is meant to help get an …