Showing results for Azure SQL - Azure SQL Devs’ Corner

Mar 14, 2025
0
2

Exploring SQL Server Integration with .NET Aspire: A Collection of Hands-On Samples

Davide Mauri
Davide Mauri

I'm happy to share a new GitHub repository with developers: azure-sql-db-aspire. This collection of eight hands-on examples demonstrates how to integrate SQL Server and Azure SQL with .NET Aspire, making it easier to build modern, cloud-native applications. Why .NET Aspire for SQL Server? .NET Aspire is a new opinionated, cloud-ready stack for .N...

Azure SQL.NETData API builder
Mar 6, 2025
4
0

MSSQL Extension for VS Code: What’s new and what’s next

Carlos Robles
Carlos Robles

The MSSQL Extension for VS Code continues to evolve, bringing powerful new features and enhancements that make SQL development more seamless and efficient. In this update, we’re excited to share the latest improvements in v1.29.0 and give you a sneak peek at what’s coming next in our open roadmap. This extension is designed for developers working ...

VS CodeAzure SQL
Feb 26, 2025
3
2

Exciting new T-SQL features: Regex support, Fuzzy string-matching, and bigint support in DATEADD – preview

Abhiman Tiwari
Abhiman Tiwari

We are thrilled to announce the public preview of three powerful T-SQL features that will elevate your SQL queries: Regular Expressions (Regex) support, Fuzzy string-matching, and bigint support in DATEADD. These enhancements are now available in Azure SQL Database and SQL Database in Microsoft Fabric, offering developers more flexibility, efficien...

Azure SQLT-SQL
Feb 18, 2025
0
1

Go passwordless when calling Azure OpenAI from Azure SQL using Managed Identities

Davide Mauri
Davide Mauri

Security is a significant topic today, and the ability to access a service requiring authentication without using an API key, password, or secret is a common request from those concerned about the security of a solution, which includes all of us. In today's digital landscape, cybersecurity threats are increasingly sophisticated and frequent, mak...

Azure SQLAISecurity
Feb 18, 2025
0
0

Building an AI App GraphQL Endpoint with SQL DB in Fabric

Brian Spendolini
Brian Spendolini

Welcome to an exciting, new workshop where we blend the power of AI with the versatility of GraphQL and SQL databases in Microsoft Fabric. This guide will walk you through creating a set of GraphQL RAG (Retrieval-Augmented Generation) application APIs, leveraging relational data and Azure OpenAI. What You’ll Learn You’ll dive into querying and ma...

Azure SQLAIDevOps
Feb 13, 2025
0
2

Database and AI: solutions for keeping embeddings updated

Davide Mauri
Davide Mauri

In the previous article of this series, it was discussed how embeddings can be quickly created from data already in Azure SQL. This is a useful starting point, but since data in a database changes frequently, a common question arises: “How can the vectors be kept updated whenever there is a change to the content from which they have been generated?...

Azure SQLAI
Feb 12, 2025
0
1

External REST Endpoint Invocation in Azure SQL Managed Instance is now in Public Preview

Brian Spendolini
Brian Spendolini

External REST Endpoint Invocation is available in Azure SQL Managed Instance with the Always-up-to-date update policy configured. Call Azure Services such as functions, Azure OpenAI, event hubs, content safety and more! To enable this feature in Azure SQL Managed Instance, run the following code: To execute sp_configure to change a configurat...

Azure SQL
Feb 6, 2025
23
3

Azure Data Studio Retirement

Carlos Robles
Carlos Robles

We’re announcing the upcoming retirement of Azure Data Studio (ADS) on February 6, 2025, as we focus on delivering a modern, streamlined SQL development experience. ADS will remain supported until February 28, 2026, giving developers ample time to transition. This decision aligns with our commitment to simplifying SQL development by consolidating ...

Azure Data StudioAzure SQLVisual Studio Code
Jan 27, 2025
0
1

Introducing Change Event Streaming: Join the Azure SQL Database Private Preview for Change Data Streaming

Sasa Popovic
Sasa Popovic

In a world where digital transformation is accelerating, the ability to integrate and process real-time data from diverse sources is crucial for success. Organizations today depend on timely insights to enhance decision-making, improve operations, and foster innovation. To meet this need, we’re thrilled to announce the private preview of Change Eve...

Azure SQL
Jan 23, 2025
0
1

Improve the “R” in RAG and embrace Agentic RAG in Azure SQL

Davide Mauri
Davide Mauri

The RAG (Retrieval Augmented Generation) pattern, which is commonly discussed today, is based on the foundational idea that the retrieval part is done using vector search. This ensures that all the most relevant information available to answer the given question is returned and then fed to an LLM to generate the final answer. While vector search...

Azure SQLAI