Skip to content
Author profile

Huy Vũ

Articles, ideas, and practical insights from Huy Vũ.

19 published articles

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ũ
7 Things Developers Should Know About SQL Server
Sql Server thg 9 2, 2026 6 min read

7 Things Developers Should Know About SQL Server

Hi. I’m a former developer who’s moved into database administration, and here’s what I wish somebody would have told me when I got started. 7. SQL functions rarely perform well. Good developers like to reuse code by putting it into funct...

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ũ