Showing category results for AI

May 28, 2025
Post comments count8
Post likes count3

Getting started with AI in SQL Server 2025 on Windows

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

AIT-SQLOpenAI
May 22, 2025
Post comments count0
Post likes count1

New AI Features in SQL Server 2025

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.

AIAzure SQLT-SQL
May 6, 2025
Post comments count1
Post likes count3

Efficiently and Elegantly Modeling Embeddings in Azure SQL and SQL Server

Davide Mauri

Storing and querying text embeddings in a database it might seem challenging, but with the right schema design, it's not only possible, it's powerful. Whether you’re building AI-powered search, semantic filtering, or recommendation features, embeddings, and thus vectors, are now a first-class data type. So how do you model them well inside a databa...

Azure SQLAIVectors
Apr 21, 2025
Post comments count1
Post likes count1

Predictable LLM results with Structured Output and sp_invoke_external_rest_endpoint

Davide Mauri

OpenAI recently introduced a powerful new feature for developers: structured output using JSON Schema via the parameter. This makes it possible to request responses from a GPT-4o model that strictly match a given schema—no free-text, no guesswork. If you're working with Azure SQL, this is a game-changer. Combined with the stored procedure and SQ...

Azure SQLAI
Apr 7, 2025
Post comments count0
Post likes count2

Enhancing Search Capabilities in SQL Server and Azure SQL with Hybrid Search and RRF Re-Ranking

Davide Mauri

In today's data-driven world, delivering precise and contextually relevant search results is critical. SQL Server and Azure SQL Database now enable this through Hybrid Search—a technique that combines traditional full-text search with modern vector similarity search. This allows developers to build intelligent, AI-powered search experiences directl...

AI
Mar 27, 2025
Post comments count0
Post likes count2

SQL Conf() 2025 Highlights: So Much Developer Innovation!

Jerry Nixon

For decades, SQL Server has been a cornerstone of data management, evolving to meet the needs of modern developers. What began as a traditional relational engine is now a cloud-enabled, AI-integrated platform designed for building real-world applications. SQL Server continues to meet developers where they are—offering tools, services, and capabilit...

Azure SQLAIT-SQL
Mar 19, 2025
Post comments count1
Post likes count3

Vector Search with Azure SQL, Semantic Kernel and Entity Framework Core

Davide,
Marco

Vector databases like Qdrant and Milvus are specifically designed to efficiently store, manage, and retrieve embeddings. However, many applications already use relational databases like SQL Server or SQL Azure. In such cases, installing and managing another database can be challenging, especially since these vector databases may not offer all t...

Azure SQLAIAzure OpenAI
Feb 18, 2025
Post comments count0
Post likes count1

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

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
Post comments count0
Post likes count0

Building an AI App GraphQL Endpoint with SQL DB in Fabric

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 SQLAIT-SQL
Feb 13, 2025
Post comments count0
Post likes count2

Database and AI: solutions for keeping embeddings updated

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