This 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 …
July 2025
-
-
This is a brief post containing my information about my PowerShell coding setup, IDE, extensions, etc. I’m writing this mainly because, based on the reactions to my reddit comment, some …
-
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 …
-
In this post I go over some useful information that you should be aware of when working with SQL Server’s IDENTITY columns. I initially intended for this to be more …
- ScriptsSQL Server
Script to reseed out-of-sync sequences used for default constraints
by Vlad DrumeaThis is a script that I wrote to help me next time I might need to bulk reseed out-of-sync SQL Server sequences tied to default constraints. Setting the scene Someone, …
- 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 …