Skip to content

Commit ccbac96

Browse files
committed
started added SQL Conf() samples
1 parent 68e37b0 commit ccbac96

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

client/src/SearchPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ const SearchPage = () => {
173173
<TeachingPopoverBody>
174174
<TeachingPopoverTitle>AI Agent Powered Search</TeachingPopoverTitle>
175175
<div>
176-
This search engine uses AI Agents to find samples from the <Link href="https://aka.ms/sqlai-samples" target="_blank">Azure SQL Database Samples repository</Link> using a RAG pattern with structured output.
176+
This search engine uses AI Agents to find samples created over time and available at <Link href='https://github.com/Azure-Samples?q=azure-sql' target="_blank">Azure SQL Database Samples repository</Link> and <Link href='https://aka.ms/sqlai-samples' target="_blank"> Azure SQL AI Samples</Link>using a RAG pattern with structured output.
177177
<ul>
178178
<li>The searched text is given to an <strong>AI Agent</strong> that decide the best tool to use to answer the question, either using similarity search or generating and executing a SQL query</li>
179179
<li>Similiarity search across all available resources is done using the newly introduced <Link href='https://devblogs.microsoft.com/azure-sql/exciting-announcement-public-preview-of-native-vector-support-in-azure-sql-database/' target="_blank">vector support in Azure SQL Database</Link>.</li>

db/samples/sample-data.sql

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,25 @@ exec dbo.add_sample '
501501
';
502502
GO
503503

504+
/*
505+
SQL Conf() 2025
506+
*/
507+
508+
exec dbo.add_sample '
509+
{
510+
"name": "Vectors, AI, Agents: how AI will change the way users interact with databases",
511+
"description": "Discover how AI is revolutionizing the way users and developers interact with databases. In this session we will explore how intelligent agents can generate and execute T-SQL queries to retrieve the precise information requested by users or developers. Dive into the foundational role of vectors in powering these agent-driven interactions and see how SQL Server can serve as the backbone for creating modern, AI-augmented applications. Additionally, gain insights into the critical security implications of these advancements and learn best practices for safeguarding your data in this AI-driven paradigm. Whether you''re a database developer or a technology strategist, this session will equip you with the tools and understanding to leverage AI for the next generation of database interactions.",
512+
"url": "https://youtu.be/Uddhx8Bu2ZM",
513+
"details": {
514+
"author": "Davide Mauri",
515+
"conference": "SQL Conf() 2025"
516+
}
517+
}
518+
';
519+
GO
520+
521+
--exec dbo.delete_sample @url = 'https://youtu.be/Uddhx8Bu2ZM'
522+
504523
select id, name, created_on, updated_on from dbo.samples order by created_on desc;
505524
--where [url] like '%kmeans%'
506525
GO

0 commit comments

Comments
 (0)