Skip to content
Tag

Perf

7 articles

Additional T-SQL Improvements in SQL Server 2022
Sql Server thg 9 4, 2026 16 min read

Additional T-SQL Improvements in SQL Server 2022

Recently I covered some of the T-SQL improvements in SQL Server 2022 here, and Aaron Bertrand covered additional improvements here. Those improvements were introduced in CTP 2.0. Microsoft just announced the release of SQL Server 2022 CT...

By selectgo
HOW TO Tracking Synchronous Statistics Updates
Sql Server thg 9 4, 2026 6 min read

HOW TO Tracking Synchronous Statistics Updates

Introduction The SQL Server query optimizer makes use of statistics during query compilation to help determine the optimal query plan. By default, if the optimizer notices a statistic is out-of-date because of too many changes to a table...

By Huy Vũ
A Beginner-to-Advanced Guide to Query Store in SQL Server
Sql Server thg 9 2, 2026 17 min read

A Beginner-to-Advanced Guide to Query Store in SQL Server

SQL Server’s Query Store is the closest thing the engine has to a flight data recorder. Before Query Store existed, when a query suddenly became slow there was often no evidence to work with. The execution plan that caused the problem wa...

By Huy Vũ
Unusual Parameter Sniffing: Big Problems with Small Data
Sql Server thg 9 2, 2026 5 min read

Unusual Parameter Sniffing: Big Problems with Small Data

Normally when we think about parameter sniffing, we think about a tiny data vs big data problem: the tiny data’s plan goes in first, and when we try to process big data, performance is terrible. But sometimes, it’s the exact opposite. I’...

By Huy Vũ