Azure SQL Dev Corner

Voices from the Azure SQL PM Team, focusing on development and developers

Latest posts

Sep 21, 2026
Post comments count 0
Post likes count 1

PostgreSQL to SQL Field Notes: Date & Time

Jerry Nixon

Moving from PostgreSQL to SQL Server? Learn the key differences between timestamp, timestamptz, datetime2, and datetimeoffset, including precision, time zones, offsets, and storage.

Sep 15, 2026
Post comments count 2
Post likes count 2

Coding agents are picking Azure SQL Database

Anna Hoffman

I went looking for Azure SQL Database in a recent coding agent benchmark, honestly unsure whether Microsoft SQL would show up. Armature ran a study where real coding agent CLIs (Claude Code, Codex, Cursor) were dropped into six synthetic-but-realistic repositories and asked to pick a database, then actually build with it. 356 runs were completed across three personas: vibe coder, junior developer, senior engineer. Every session is published, so you can replay the prompts, the searches, the commands, and the code.  Azure SQL Database came in second! Not second behind AWS. Second behind Neon, and ahead of Amazon...

Sep 3, 2026
Post comments count 0
Post likes count 3

SQL Decomposition in a Nutshell

Jerry Nixon

Good software design principles apply inside the database too. See how decomposition, encapsulation, statelessness, and clear contracts can make complex T-SQL easier to read, test, reuse, and maintain.

Sep 3, 2026
Post comments count 2
Post likes count 0

Advocating for Uptime: The 6 Phases of Change

Jerry Nixon

Schema changes are inevitable, but downtime doesn’t have to be. Learn a phased approach to safely evolve a production SQL schema while applications remain online.

Aug 31, 2026
Post comments count 0
Post likes count 1

Bacpac and Dacpac, the similarities and differences

Drew Skwiers-Koballa

When you need to move an entire database or move the objects in a database, bacpac and dacpac files often come up because of all of the tooling options to interact with them. Bacpac and dacpac files share some core similarities as well as some major differences in how they're used in SqlPackage and other SQL tools, but their flexibility can create a bit of confusion. In this post, we are going to discuss exactly what makes bacpac specifically important, as well as explore the options that a dacpac is capable of. A bacpac is primarily a portable copy of schema and data whose model is limited to the Azure SQL Data...

Aug 28, 2026
Post comments count 2
Post likes count 2

Try the new SqlClient and Retry connections natively

Jerry Nixon

Microsoft.Data.SqlClient includes configurable retry logic for SqlConnection and SqlCommand, giving .NET applications built-in resilience for transient SQL Server failures without requiring Polly.