Azure SQL Dev Corner

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

Latest posts

Jun 2, 2026
Post comments count 0
Post likes count 0

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

Yo-Lei,
Carlos,
Tauseef

The MSSQL extension for VS Code v1.43 expands what’s possible inside Visual Studio Code with the General Availability of Schema Designer with GitHub Copilot, Data API builder, and SQL Notebooks. We’re also introducing the Public Preview of Azure SQL Database provisioning, giving developers a guided way to create Azure SQL databases directly from VS Code. What's new in MSSQL extension for VS Code v1.43 Here's a summary of the key features in this release: Azure SQL database Provisioning (Preview) The MSSQL extension for Visual Studio Code now introduces Azure SQL Database provisioning i...

May 28, 2026
Post comments count 0
Post likes count 2

SQL + AI, hands-on: Join a free workshop near you

Anna Hoffman

If you work with Microsoft SQL regularly, the AI conversation right now probably feels a little exhausting. Every week brings a new platform, a new pattern, a new opinion about how you’re “supposed” to build AI apps. Most of it assumes you’ll start over. You don’t have to. We’re running SQL AI App in a Day workshops with Microsoft partners around the world. They’re free, hands-on, and built for developers who want to add AI to the apps they already own, using the data they already trust. You can browse upcoming sessions and register. Build on Microsoft SQL, not around it The question that keeps coming...

May 22, 2026
Post comments count 0
Post likes count 1

Regex support for LOB types in T-SQL—available in Azure SQL & SQL Server 2025

Abhiman Tiwari

At a glance — Native regular expression (regex) functions in T-SQL now accept and inputs of up to 2 MB across all seven regex functions, including the two table-valued functions ( and ). This capability ships in SQL Server 2025 CU5 and is already available in Azure SQL Database, SQL Database in Fabric and Azure SQL Managed Instance configured with the Always-up-to-date update policy. It will reach Managed Instances on the SQL Server 2025 update policy as part of the CU5 rollout. You no longer need to split log files, HTML documents, or large JSON payloads into 8,000-byte chunks just to run a pattern match. 1. ...

May 14, 2026
Post comments count 0
Post likes count 4

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

Jerry Nixon

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 reticence against all of it. The voice in your head that makes you seriously uneasy. Your reputation is at stake, yes, but to your enterprise, this might be existential. It has a name: NL2SQL. NL2SQL, or Natural Language to SQL, is where an AI agent turns a natural language ...

May 13, 2026
Post comments count 0
Post likes count 2

Microsoft SQL Security Across the MAESTRO Stack: Building Secure Agentic AI with Defense-in-Depth

Arun Vijayraghavan

Artificial Intelligence is evolving rapidly. What began as simple prompt-and-response systems is now transforming into fully autonomous, agentic AI architectures capable of reasoning, orchestrating tools, interacting with enterprise data, and invoking external systems dynamically. While these capabilities unlock enormous business potential, they also introduce an entirely new category of security challenges. Organizations are no longer asking only: “How do we build AI systems?” They are now asking: “How do we build AI systems securely, responsibly, and with governance built into every layer?” This ...

May 8, 2026
Post comments count 0
Post likes count 5

Generate Embeddings Function and External Model Object Support Are Now Generally Available in Azure SQL

Aaron Saidi

We are excited to announce the General Availability (GA) of AI_GENERATE_EMBEDDINGS and CREATE EXTERNAL MODEL in Azure SQL Database and Azure SQL Managed Instance. These two T-SQL features — CREATE EXTERNAL MODEL and AI_GENERATE_EMBEDDINGS — work together as a single, integrated pipeline for generating vector embeddings directly from T-SQL. No data movement, no external orchestration, no application-layer pipeline required. EXTERNAL MODEL object defines where to get embeddings from and how to authenticate — registered once, reused everywhere. AI_GENERATE_EMBEDDINGS calls the external model to generate the ve...

May 4, 2026
Post comments count 2
Post likes count 2

SQL MCP Server as an App Service

Jerry,
Helen

Run SQL MCP Server on Azure App Service without containers. This walkthrough uses Data API builder to configure authentication, expose MCP, REST, and GraphQL endpoints, and deploy as code.

Apr 27, 2026
Post comments count 0
Post likes count 1

Azure Data Studio is retired: Move your Azure SQL workflow to VS Code in 10 minutes

Iqra Shaikh

Azure Data Studio (ADS) retired on February 6, 2025, and support ended on February 28, 2026. The recommended path forward is Visual Studio Code with the MSSQL extension. If you used ADS daily, this guide gets you productive quickly in VS Code. The focus is on importing your existing setup, restoring familiar shortcuts like F5, and getting SQL Database Projects working so you can build and publish schema changes confidently from the editor. TL; DR Why this matters for Azure SQL developers Running queries is only part of the job. Most teams need repeatable workflows for schema change review, ...

Apr 21, 2026
Post comments count 0
Post likes count 0

The Polyglot tax – Part 4

Aditya Badramraju

The Agent-Ready Database: Security, Backup, and MCP Part 4 of 4 – The Multi-Model Database Series This is the final post in a four-part series on multi-model databases in SQL Server 2025 and Azure SQL - exploring how the optimizer, storage engine, and security layer treat each data model as a first-class citizen under one roof. In Part 1: The Polyglot Tax, we described the trajectory: you spin up a database, point an agent at it, and start building fast. The complexity comes later - JSON, graph, vectors, analytics - and each new requirement tempts you to spin up another database. In Part 2: When JSON Met Gra...

Apr 8, 2026
Post comments count 4
Post likes count 6

Introducing SQL MCP Server

Jerry Nixon

SQL MCP Server gives enterprises a secure, feature-rich way to enable agents to access data. This is accomplished without exposing the schema, risking consistency, or relying on fragile natural language parsing. SQL MCP Server is a feature of Data API builder, so deployments have a proven entity abstraction system, RBAC security at the API layer with Azure Key Vault integration, custom OAuth and Microsoft Entra support, first-level and second-level caching with integration with Redis and Azure Managed Redis, and complete instrumentation and telemetry with integration with Azure Log Analytics, Application Insights...

Apr 1, 2026
Post comments count 0
Post likes count 2

The Polyglot tax – Part 3

Aditya Badramraju

Vectors, Analytics, and the End of ETL Part 3 of 4 - The Multi-model Database Series In Part 1: The Polyglot Tax we laid out the fraud detection scenario: a transaction comes in, and before you approve or deny it you need five checks. Order history (relational). Device fingerprint (JSON). Connections to fraud rings (graph). Transactions that look like this one (vector similarity). Statistical baselines across millions of rows (analytics). Five data access patterns, five databases in the polyglot model, five sets of everything that can break. In Part 2: When JSON Met Graph we handled the first three. We store...

Mar 23, 2026
Post comments count 2
Post likes count 0

SQL code analysis in VS Code: Configure rules without editing your project file

Iqra Shaikh

SQL code analysis has been part of the SSDT workflow for a long time. Before deploying a schema change, you could run a set of static analysis rules against your project to catch potential issues, things like missing primary keys, deprecated syntax, or objects that could break under certain compatibility levels. It was one of those SSDT features that teams quietly relied on without thinking much about it. When developers started moving their SQL Database Projects workflow to VS Code, code analysis came with them. But configuring which rules to enable or disable required editing the .sqlproj file directly, not a ...

Mar 23, 2026
Post comments count 0
Post likes count 0

Manage SQL database schemas in VS Code: Publish dialog and item templates

Iqra Shaikh

Making schema changes often means jumping between tools. You write code in VS Code, then switch to a separate tool to deploy your changes : exporting a script, running it manually, or copy-pasting into a query editor. Either way, it pulls you out of your flow. With the latest updates to SQL Database Projects in VS Code, that context switching is no longer necessary. You can now manage and deploy schema changes to Azure SQL, SQL Server, or Fabric SQL databases without leaving your editor. What's new: Publish dialog and item templates We've added two features to the SQL Database Projects extension for VS Code th...

Mar 18, 2026
Post comments count 0
Post likes count 1

DiskANN Vector Index Improvements

Davide,
Pooja

Remember when we announced the Public Preview of DiskANN vector indexes back in November and mentioned that once you created the index, your table became read‑only? Yeah… about that... 😅 We shipped early because the demand for Vector search in SQL was overwhelming. We knew the constraints weren’t ideal, but we also knew the fastest way to get this into your hands was to iterate in public. You gave us feedback. Lots of it! And today, we’re excited to say: those major preview limitations are gone. We are happy to announce that the DiskANN Vector Index public preview just received a major upgrade, removing the in...

Mar 18, 2026
Post comments count 1
Post likes count 5

MSSQL Extension for VS Code: SQL Notebooks, AI-Powered Schema Design, Data API builder & More

Yo-Lei,
Tauseef,
Carlos

The MSSQL extension for VS Code v1.41 continues to evolve, delivering features that make SQL development more integrated, more powerful, and more developer-friendly. In this release, we're introducing the Public Preview of Schema Designer with GitHub Copilot, Data API builder, and SQL Notebooks, along with the General Availability of Data-tier Application, Fabric integration, and SQL Database Projects static code analysis: seven capabilities that bring AI-powered schema design, instant API generation, interactive notebooks, and enterprise-grade tooling directly into your development workflow inside Visual Stu...

Mar 4, 2026
Post comments count 0
Post likes count 3

The Polyglot tax – Part 2

Aditya Badramraju

When JSON Met Graph Part 2 of 4 - The Multi-model Database Series A note on naming. Throughout this series, when we say "SQL Server 2025" we also mean Azure SQL. The multi-model capabilities we discuss - native JSON, graph, vector, and columnstore - are available across both the on-premises engine and the Azure SQL family. In Part 1 we described the moment every fast-moving project hits: the agent built your prototype in a morning, and now the product team wants features that do not fit neatly into relational tables. Device fingerprints arrive as nested JSON. The anti-fraud team needs to trace connection...

Mar 2, 2026
Post comments count 4
Post likes count 2

What questions will you ask your data agent?

Jerry Nixon

Data API builder (DAB) 1.7+ delivers secure MCP-based CRUD access with deterministic, policy-enforced query generation and an upcoming aggregate tool that enables complex, production-safe analytical questions without exposing raw SQL to AI agents.

Feb 25, 2026
Post comments count 2
Post likes count 6

The Polyglot Tax

Aditya Badramraju

Part 1 of 4 - The Multi-model Database Series This is a four-part series about what happens when a single database engine handles relational, document, graph, vector, and analytical workloads natively - and what you stop paying for when it does. You spin up a database, point an agent at it, and start building. The first few tables go fast - users, orders, maybe a product catalog. The agent writes your CRUD, wires up the API, and you have a working prototype by lunch. Then the requirements come in. The product team wants semantic search. The fraud team needs to trace connections between accounts. Marketing wa...