powershelldba.de

SQL Server 2025: Quick Overview of All Changes

A fast, category-by-category scan of what changed in SQL Server 2025, editions, AI, development, DBA operations, performance, HADR, security, Microsoft Fabric, and what got dropped. For the deep dives, see the linked articles under each section.

About this list: this is an orientation, not a substitute for the official Microsoft documentation. Exact syntax, GA status, and edition gating can still shift, and several capabilities depend on compatibility level or a database-scoped setting. Verify against current Microsoft Learn docs before you plan around any single line item.

Edition-Related Changes

Built-In Artificial Intelligence Capabilities

The headline theme of the release: AI workloads move into the engine instead of living in a bolted-on vector store.

Full walkthrough with code: SQL Server 2025: What's New for Developers and DBAs.

Development Features and Enhancements

FeatureWhat it does
Native JSON typeValidates on write, stores in optimized binary form instead of NVARCHAR with helper functions
JSON aggregatesJSON_OBJECTAGG and JSON_ARRAYAGG build documents straight from a result set
Regular expressionsREGEXP_LIKE, REGEXP_REPLACE, REGEXP_SUBSTR, REGEXP_INSTR, REGEXP_COUNT, replacing CLR functions and nested PATINDEX gymnastics
Change event streamingPush row-level changes to a streaming target (e.g. Azure Event Hubs) as a configured feature instead of a home-grown CDC poller

Code examples for all of these: SQL Server 2025: What's New for Developers and DBAs.

DBA Features and Enhancements

⚠ The recurring caution: a new optimizer is consistently the top source of "it was fast on the old version, it's slow now" tickets after an upgrade. Capture a performance baseline before you migrate, and raise the compatibility level as its own deliberate, separately tested step.

Performance Enhancements

High Availability and Disaster Recovery Improvements

Verify before you rely on it: HADR is the category where "improved" claims most need a citation against your specific topology (traditional Windows Server Failover Clustering vs. Azure-managed patterns). Confirm exact behavior against Microsoft Learn for your deployment model before it becomes part of a runbook.

Security Changes

Microsoft Fabric Integration

Discontinued Features

This category ages fast. "Discontinued" and "deprecated" lists get revised between preview and GA and again in cumulative updates. Treat the bullets above as "things known to be going away as of writing," and always re-check Microsoft's official discontinued/deprecated database engine features page for your exact target build before you sign off on a migration plan.

Where to Go Next

If you want…Read this
Code-level detail on AI, JSON, regex, Fabric mirroringSQL Server 2025: What's New for Developers and DBAs
A step-by-step migration plan with rollback and testing checklistsMigration to SQL Server 2025: Risks, Issues, and Safe Approach
How this maps to a regulated/audited environmentSQL Server 2025 from a Banking Perspective
🔧 Tooling for the upgrade itself: if you're doing an in-place upgrade, InplaceUpDate backs up logins, linked servers, SSIS, SSRS, and SSAS first and refuses to uninstall without proof of a completed backup. After the upgrade, run Get-sqmSQLInstanceCheck to validate the instance before applications are let back on.

Full command reference: sqmSQLTool commands.

The Bottom Line

SQL Server 2025 splits cleanly into two headline moves (AI in the engine, Fabric mirroring for analytics) plus the steady, expected evolution everywhere else: a stricter compatibility floor, lighter locking, deeper Entra ID integration, and the usual short list of things quietly removed. None of it changes the upgrade discipline: baseline first, test on a copy, raise compatibility level as its own step, and keep a tested rollback ready.