SQLYARD

SQL Server 2025 Security Modernization: What DBAs Need to Know

SQL Server 2025 Security Modernization: What DBAs Need to Know – SQLYARD Leave a Comment / Articles, DBA Checklist, Scripts / By SQLYARD SQL Server 2025 Security Modernization: What DBAs Need to Know By David Yard · SQLYARD.com · April 2026 · Estimated read: 20–25 min Table of Contents Security Changes at a Glance TDS […]

SQL Server 2025 Security Modernization: What DBAs Need to Know Read More »

SQL Server 2025: REGEXP_SUBSTR() and REGEXP_REPLACE() (Part 7)

Introduction SQL Server 2025 continues expanding its native regular expression capabilities with two highly practical functions: • REGEXP_SUBSTR() – extract a substring that matches a pattern• REGEXP_REPLACE() – replace substrings that match a pattern These functions eliminate years of workarounds involving CHARINDEX, SUBSTRING, PATINDEX, XML methods, and CLR helpers. With SQL Server 2025, you can

SQL Server 2025: REGEXP_SUBSTR() and REGEXP_REPLACE() (Part 7) Read More »

Understanding Long Sync IO in SQL Server: Scheduler in Nonpreemptive Mode Longer Than 1000 ms

Understanding Long Sync IO in SQL Server: Scheduler in Nonpreemptive Mode Longer Than 1000 ms – SQLYARD Leave a Comment / Articles, DBA Checklist, Scripts / By SQLYARD Understanding Long Sync IO in SQL Server: Scheduler in Nonpreemptive Mode Longer Than 1000 ms By David Yard · SQLYARD.com · April 2026 · Estimated read: 18–22

Understanding Long Sync IO in SQL Server: Scheduler in Nonpreemptive Mode Longer Than 1000 ms Read More »

SQL Server 2025: REGEXP_LIKE() and Native Pattern Matching (Part 6)

SQL Server 2025: REGEXP_LIKE() – Native Regular Expressions Arrive** Introduction SQL Server has never had true regular expression support built into the engine. Developers relied on: • CLR functions• LIKE hacks• CHARINDEX• XML PATH tricks• External tools That changes in SQL Server 2025 with the introduction of REGEXP_LIKE(), the first native RegEx function. It finally

SQL Server 2025: REGEXP_LIKE() and Native Pattern Matching (Part 6) Read More »

SQL Server 2025: BASE64 Encoding and Decoding for Secure Data Exchange (Part 5)

SQL Server 2025: BASE64_ENCODE() and BASE64_DECODE()** Introduction SQL Server has always required custom functions, CLR code, or external tools to handle Base64 encoding. That changes with SQL Server 2025, which introduces two native functions: • BASE64_ENCODE()• BASE64_DECODE() These simplify secure data transport, token handling, API payload encoding, and binary-to-text conversion. They are useful across authentication

SQL Server 2025: BASE64 Encoding and Decoding for Secure Data Exchange (Part 5) Read More »

SQL Server 2025: PRODUCT() Aggregate Function Explained (Part 4)

SQL Server 2025: The New PRODUCT() Aggregate Function** Introduction SQL Server 2025 introduces a small but surprisingly powerful new aggregate function: PRODUCT(). At first glance, it seems simple. SUM adds values, AVG averages them, COUNT counts them, and now PRODUCT multiplies them. But this addition opens doors to analytical patterns that were impossible or overly

SQL Server 2025: PRODUCT() Aggregate Function Explained (Part 4) Read More »

Does Explicit Conversion in SQL Server Improve Query Runtime?

Introduction If you have spent time tuning SQL Server queries, you have probably seen advice like “avoid implicit conversions” or “make sure your data types match.” This guidance shows up in execution plans, performance checklists, and even SQL Server warning messages. But does explicitly converting data types in SQL Server actually improve query runtime, or

Does Explicit Conversion in SQL Server Improve Query Runtime? Read More »

SQL Server 2025: JSON Index Deep Dive and Performance Implications (Part 3)

SQL Server 2025: JSON Index Deep Dive** Introduction One of the most important features in SQL Server 2025 is the new JSON index, built specifically for the native JSON type introduced in Day 2. This is the first time SQL Server provides an engine-level index designed to accelerate document-style workloads. If you’ve ever filtered JSON

SQL Server 2025: JSON Index Deep Dive and Performance Implications (Part 3) Read More »

SQL Server 2025: Native JSON Data Type and Built-In JSON Functions (Part 2)

SQL Server 2025: Native JSON Data Type and New JSON Functions** Introduction For years, SQL Server developers and DBAs have been storing JSON as NVARCHAR columns. It worked, but it never felt like a real solution. SQL Server 2025 finally closes the gap with a fully native JSON data type, along with new JSON functions

SQL Server 2025: Native JSON Data Type and Built-In JSON Functions (Part 2) Read More »

SQL Server 2025 – Feature Deep Dive Series (1 of 10): New Features Overview and Installation Guide

Introduction SQL Server 2025 marks one of the biggest shifts in the SQL Server ecosystem since the 2016 release. We finally get native JSON storage, full RegEx support, BASE64 functions, PRODUCT aggregates, JSON indexes, and the long-awaited external REST endpoint invocation. The goal of this series is to walk through every major new engine feature

SQL Server 2025 – Feature Deep Dive Series (1 of 10): New Features Overview and Installation Guide Read More »