Posts by this author

Sep 3, 2026
Post comments count0
Post likes count3

SQL Decomposition in a Nutshell

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

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 28, 2026
Post comments count2
Post likes count2

Try the new SqlClient and Retry connections natively

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 18, 2026
Post comments count2
Post likes count2

The Two Hybrid Searches in Microsoft SQL

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
Aug 13, 2026
Post comments count0
Post likes count2

Your best friend: BlockOnPossibleDataLoss=True

BlockOnPossibleDataLoss can frustrate developers, but it's one of the most important safeguards in database deployment. Here's how to keep your local development loop fast while protecting the data that matters.

Azure SQLSQL Server Management StudioSQL Database Projects
Jul 20, 2026
Post comments count1
Post likes count3

T-SQL Hygiene: Introducing the Covering Index

Often in applications, we write database queries. And often, the same query is executed again and again. To make queries against large tables faster, we can add an index. This is a general improvement for anyone accessing the table. However, there is a specially designed index called a covering index that can make queries against large tables parti...

T-SQLAzure SQL
Jul 1, 2026
Post comments count0
Post likes count1

Audit Frontier AI Agents with SQL MCP Server

With On-Behalf-Of authentication, SQL MCP Server lets agents access Microsoft SQL without losing the user identity behind the request. Azure SQL can audit the signed-in user who invoked the operation, not just the agent, app, or MCP server that carried it out.

Data API builderSQL MCP Server
Jun 30, 2026
Post comments count0
Post likes count1

Compose your API surface with Data API builder custom paths

Data API builder (DAB) 2.0 adds compound paths for REST endpoints, giving developers more control over how their API surface is organized. Instead of mirroring database topology, endpoints can now reflect simple names, business areas, or schema ownership.

Data API builderREST
May 14, 2026
Post comments count0
Post likes count4

Considering NL2SQL? Should your database really be the prompt? How can SQL MCP Server help?

You’ve probably experienced both of these, perhaps at the same time. First, that desire to let an agent get at your data. It’s driven by simplification and better experiences for the user and for you: fewer screens, fewer queries, fewer reports, and less code overall. Second, and perhaps more importantly, that unrelenting reluctance and reticenc...

SQL MCP ServerData API builder