May 22nd, 2025
0 reactions

New AI Features in SQL Server 2025

Brian Spendolini
Senior Product Manager, Azure SQL Database

We have some great new AI Features in SQL Server 2025. I also figured a video would be better than reading a blog….

but, you can also read all about it here.

Author

Brian Spendolini
Senior Product Manager, Azure SQL Database

0 comments

Discussion is closed.

'; block.insertAdjacentElement('beforebegin', codeheader); let button = codeheader.querySelector('.copy-button'); button.addEventListener("click", async () => { let blockToCopy = block; await copyCode(blockToCopy, button); }); } }); async function copyCode(blockToCopy, button) { let code = blockToCopy.querySelector("code"); let text = ''; if (code) { text = code.innerText; } else { text = blockToCopy.innerText; } try { await navigator.clipboard.writeText(text); } catch (err) { console.error('Failed to copy:', err); } button.innerText = "Copied"; setTimeout(() => { button.innerHTML = '' + svgCodeIcon + ' Copy'; }, 1400); }