Tonie Huizer

Tonie Huizer is a Software, Data, and DevOps Consultant who believes good tech starts with understanding your people. A regular on international stages and a Microsoft Certified Azure Developer, Tonie loves helping teams simplify complex challenges; whether that’s modernizing database deployments, designing scalable systems, or just getting Dev and Ops to finally talk to each other.

Tonie is known for his clear, energetic presentation style and ability to make complex topics accessible and engaging. As a Redgate Community Ambassador, he advocates for database DevOps and contributes to open knowledge sharing through blogs, talks, and events across the globe. He also co-leads SeaQL Saturday, a community-driven event that blends education, networking, and Sammie, his Kooikerhondje mascot. (Because yes, even events are better with a dog.)

Whether he's discussing Azure DevOps workflows, database release automation, or the cultural shifts required to implement DevOps successfully, Tonie brings real-world experience, humor, and actionable insights. His goal is to inspire professionals not just to adopt new technologies, but to transform how teams collaborate and innovate.

And when he’s not speaking about tech, he might just be speaking about whisky. Tonie is a passionate whisky enthusiast who loves sharing stories, flavors, and the occasional tasting session with his fellow connoisseur of TasteWhisky. If you're into DevOps, data, and a well-aged dram on the side, Tonie’s your man!
Contact me if you need any help or questions!
  • Interests: Other than IT related ;-) Whisky, vintage Mercedes Benz cars, Kooikerhondje Sammie
  • Skills: SQL, DevOps, People, .NET

Blogs

SQL Server Alerts

By

Don’t Let Trouble Sneak Up on You   Most SQL Servers run quietly. Until...

Prompt AI helping with Auditing

By

I had a conversation with a customer asking this question: how can I tell...

From Data Custodian to Innovation Catalyst: The Evolving Role of the CDO

By

There was a time when the Chief Data Officer lived in the shadows of...

Read the latest Blogs

Forums

Create an HTML Report on the Status of SQL Server Agent Jobs

By Nisarg Upadhyay

Comments posted to this topic are about the item Create an HTML Report on...

Collation errors...what is best way to deal with it?

By water490

Hi I have a SP that occasionally get this error: Cannot resolve the collation...

Was the index created or not?

By water490

Hi everyone I am getting an error when I create the index but I...

Visit the forum

Question of the Day

Estimated Rows

I have two calls to the GENERATE_SERIES TVF in this code:

SELECT   TOP 10 gs.value
FROM     GENERATE_SERIES(1, 10) AS gs
ORDER BY NEWID ()
OPTION (RECOMPILE);
go
DECLARE @a int = 10;
SELECT   TOP (@a) gs.value
FROM     GENERATE_SERIES(1, @a) AS gs
ORDER BY NEWID ()
OPTION (RECOMPILE);
In the actual query plans, what is the estimated number of rows for each batch in SQL Server 2022?

See possible answers