Azure SQL Devs’ Corner

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

Featured posts

Vector Support Public Preview now extended to Azure SQL MI
May 29, 2025
Post comments count 2
Post likes count 1

Vector Support Public Preview now extended to Azure SQL MI

Pooja Kamath Mladen Andzic Davide Mauri
Pooja,
Mladen,
Davide

We are thrilled to announce that Azure SQL Managed Instance now supports Vector type and functions in public preview.  This builds on the momentum from Azure SQ...

Azure SQLAIVectors

Latest posts

A story of collaborating agents: chatting with your database the right way
Jun 2, 2025
Post comments count 1
Post likes count 2

A story of collaborating agents: chatting with your database the right way

Davide Mauri
Davide Mauri

Today, more and more customers are embracing AI with one clear goal in mind: they want to chat with their data. And by "data," they mean all of it:  structured tables, unstructured documents, images, audio, and more. This demand has given rise to hybrid approaches that blend semantic understanding with precise data retrieval. But here’s the challenge: while embeddings and vector search play a critical role in semantic search, they’re not enough on their own — especially when the question is highly specific and demands an exact answer. As I discussed in Improve the “R” in RAG and Embrace Agentic RAG in Azure...

Azure SQL Cryptozoology AI Embeddings Lab Now Available!
May 29, 2025
Post comments count 0
Post likes count 0

Azure SQL Cryptozoology AI Embeddings Lab Now Available!

Brian Spendolini
Brian Spendolini

Missed out on MS Build 2025? No worries! Our lab is now available for your exploration. Dive into a unique cryptozoology experience using Azure SQL and Azure AI to uncover intriguing (and true) connections among cryptids worldwide. Curious about who would reign supreme in a battle royal or which regions of the world hold the key to encountering these mysterious creatures? Embark on a journey of discovery with the Azure SQL Cryptozoology AI Embeddings Lab! Discover more HERE!

Getting started with AI in SQL Server 2025 on Windows
May 28, 2025
Post comments count 0
Post likes count 1

Getting started with AI in SQL Server 2025 on Windows

Brian Spendolini
Brian Spendolini

Back in the earlier part of the year (February maybe?), I put this tutorial together for our early adopters in the SQL Server 2025 program. It’s a guide for setting up SQL Server 2025 in a Hyper-V VM (I used Windows Server) with Ollama and ngnix as an https proxy. It's a variation of my workshops for Ignite 2024 and a SQL in Fabric one from February 2025. This tutorial helps you get started using the new AI features of SQL Server 2025 on Windows/Windows Server. Prerequisites Set up your environment The following section guides you through setting up the environment and installing the nec...

New AI Features in SQL Server 2025
May 22, 2025
Post comments count 0
Post likes count 0

New AI Features in SQL Server 2025

Brian Spendolini
Brian Spendolini

We have some great new AI Features in SQL Server 2025. I also figured a video would be better than reading a blog.... https://www.youtube.com/watch?v=dDJheVYgeVo but, you can also read all about it here.

MSSQL Extension for VS Code: Introducing Schema Designer (Preview)
May 21, 2025
Post comments count 0
Post likes count 1

MSSQL Extension for VS Code: Introducing Schema Designer (Preview)

Yo-Lei Chen
Yo-Lei Chen

Overview Database design can often feel like navigating a maze of tables, relationships, and data types — especially when working directly with T-SQL scripts. But what if you could map out your database, make changes to your tables, and manage complex schemas within a graphical interface? We are excited to announce the Public Preview of Schema Designer in the MSSQL extension for Visual Studio Code! Features The Schema Designer feature offers these features: Open Schema Designer Right-click on the database in the object explorer and select "Design Schema (Preview)" from the menu...

Announcing the General Availability (GA) of JSON data type & JSON aggregates…
May 19, 2025
Post comments count 7
Post likes count 0

Announcing the General Availability (GA) of JSON data type & JSON aggregates…

Umachandar Jayachandran (UC)
Umachandar Jayachandran (UC)

We are excited to announce the General Availability (GA) of the native JSON data type and JSON aggregates - JSON_OBJECTAGG & JSON_ARRAYAGG. You can use the JSON data type and JSON aggregates to integrate and work with JSON documents more efficiently in the database. This functionality is available in Azure SQL Database, Azure SQL Managed Instance with the Always-up-to-date update policy. The functionality is also available in SQL Server 2025 preview. Native JSON data type The native JSON data type stores JSON documents in a binary format that the database engine can manage efficiently. The JSON data type is...

Unlocking the Power of Regex in SQL Server
May 19, 2025
Post comments count 2
Post likes count 1

Unlocking the Power of Regex in SQL Server

Abhiman Tiwari
Abhiman Tiwari

Regular expressions, or regex, are powerful tools for text manipulation and pattern matching. They are incredibly useful in various scenarios, such as data validation, extraction, and transformation. SQL Server 2025 introduces native support for regex functions, making it easier to perform complex text operations directly within SQL queries. This Regex support is available in SQL Server 2025 public preview, Azure SQL Database, SQL DB in Fabric, and Azure SQL Managed Instance. The table-valued functions (TVFs) are currently available on SQL Server 2025 public preview however they will follow on other offerings as ...

MSSQL Extension for VS Code: New UI Goes GA and GitHub Copilot Enters Preview
May 19, 2025
Post comments count 0
Post likes count 1

MSSQL Extension for VS Code: New UI Goes GA and GitHub Copilot Enters Preview

Carlos Robles
Carlos Robles

The SQL development experience is taking a major leap forward with the MSSQL Extension for VS Code. The MSSQL extension is evolving to meet the needs of modern developers, bringing powerful, intelligent, and intuitive capabilities directly into your daily workflow. With this release, we’re announcing the general availability of the enhanced UI and the public preview of GitHub Copilot integration. Together, these updates streamline how developers connect to databases, write queries, and manage schema objects—whether you’re working locally with SQL Server 2025 or in the cloud with Azure SQL or SQL Database in Fabr...

Avoid T-SQL anti-patterns with the free T-SQL analysis tool
May 8, 2025
Post comments count 2
Post likes count 1

Avoid T-SQL anti-patterns with the free T-SQL analysis tool

Erik Ejlskov Jensen
Erik Ejlskov Jensen

T-SQL Analyzer is a free, open-source, cross platform command line tool for identifying, and reporting the presence of anti-patterns and design issues in SQL Server T-SQL scripts. As a database developer, you can catch any potential bad practices and design problems very early in the project process - this ensures a frictionless path to deployment from development and test environments to production. The tool evaluates your scripts with more than 140 rules for design, naming and performance issues. The rules are created by Microsoft and the SQL Server community. If you already maintain your SQL scripts ...