Showing archive results for 2026

Sep 21, 2026
Post comments count1
Post likes count1

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.

Azure SQLT-SQLSQL Server 2025
Sep 15, 2026
Post comments count3
Post likes count2

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 ac...

Azure SQLAIAzure OpenAI
Sep 3, 2026
Post comments count0
Post likes count3

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.

Azure SQLT-SQL
Sep 3, 2026
Post comments count2
Post likes count0

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.

Azure SQLT-SQL
Aug 31, 2026
Post comments count0
Post likes count1

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 ...

Azure SQL
Aug 28, 2026
Post comments count2
Post likes count2

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.

Azure SQLSQL Server 2025.NET
Aug 26, 2026
Post comments count0
Post likes count1

New Azure SQL Foundations video series with GitHub samples

Anna Hoffman

Bob Ward and I recently released a series of videos, read more in the original blog post or go directly to the series on YouTube. The Azure SQL Database Foundations series are four videos that take you from your first Hyperscale database to AI features running against your own operational data. We also included how to assess and migrate (with AI...

AIAzure SQLVectors
Aug 19, 2026
Post comments count0
Post likes count0

Outgrowing SQL Server Express? Upgrade to Azure SQL Database Free Tier in 3 Steps

Vandana,
Amit

If you’ve been building local prototypes, internal tools, web backends, or lightweight services on SQL Server Express, you know the routine: it’s free, familiar, and gets the job done – until you hit hardware limits or spend weekends manual backup scripts and handling OS patches. Learn how to upgrade from SQL Server Express to Azure SQL Database fr...

Azure SQLAIVectors
Aug 19, 2026
Post comments count0
Post likes count0

MSSQL Extension for VS Code: SQL Formatter, Azure SQL Database Provisioning, and More

Yo-Lei Chen

Writing and maintaining SQL is easier when you can eliminate repetitive steps and keep your scripts cleanly formatted. With the MSSQL extension for VS Code v1.45, we're introducing the Public Preview of the SQL Formatter alongside the General Availability of Azure SQL Database Provisioning and Shortcuts Configuration. You can now apply consistent T...

Azure SQL
Aug 18, 2026
Post comments count2
Post likes count2

The Two Hybrid Searches in Microsoft SQL

Jerry Nixon

Hybrid search is usually described as combining keyword search with vector search. Microsoft SQL does that, for sure, but we do quite a bit more right out of the box. SQL dynamically evaluates queries and switches between kNN and ANN vector search based on cost and selectivity. These two types of hybrid search, work together, ensuring your semantic...

Vector SearchHybrid Search