Basic Regex Emulator for SQL Server
The post Basic Regex Emulator for SQL Server appeared first on SQLServerCentral.
The post Basic Regex Emulator for SQL Server appeared first on SQLServerCentral.
In February 2025, Microsoft introduced new T-SQL functions in Azure SQL Database and SQL Database in Microsoft Fabric […]
Introduction Performing bulk updates in SQL Server can be a resource-intensive operation, particularly when dealing with large datasets. […]
Regular expressions are a way of doing complex string searches. They can be really useful, but they have […]
Introduction SQL Server 2022 introduced the LEFT_SHIFT and RIGHT_SHIFT functions, which allow you to manipulate numbers by shifting […]
Introduction AdventureWorks is a sample database from Microsoft that simulates a company called Adventure Works Cycles. It is […]
Introduction In SQL Server 2022, developers often need to implement conditional logic within their queries. Whether it’s selecting […]
The post The Power of Generate_series appeared first on SQLServerCentral.
Geographic information systems (GIS) play a critical role in emergency response planning and risk assessment. One of the […]
Introduction AdventureWorks is a sample database from Microsoft that simulates a company called Adventure Works Cycles. It is […]
Introduction SQL Server 2022 introduces powerful bit manipulation functions that allow for efficient handling of binary data. These […]
The post Find Text in Stored Procedure, Function, View, or Trigger appeared first on SQLServerCentral.
Introduction SQL Server provides robust tools for data type conversion, such as PARSE, TRY_PARSE, and TRY_CONVERT. These functions […]
The post How to use @@ROWCOUNT in SQL Server appeared first on SQLServerCentral.
The post Add and Subtract Dates using DATEADD in SQL Server appeared first on SQLServerCentral.
Introduction Attaching databases in SQL Server can be a routine yet sometimes time-consuming task for Database Administrators (DBAs). […]
Introduction When working with T-SQL trigonometric functions in SQL Server, it’s important to be aware of potential pitfalls […]
Introduction Database administrators regularly detach and attach databases as part of their daily tasks. During this process, they […]
The post SQL Server OPTION RECOMPILE for Simple Queries appeared first on SQLServerCentral.
Introduction Managing databases in SQL Server requires a solid understanding of various methods for transferring and maintaining data. […]
Introduction In SQL Server, the transaction log file is essential for keeping your database reliable and durable. It […]
The post Why a Self-Join Requires Halloween Protection appeared first on SQLServerCentral.
The post Calculate a Moving Average with T-SQL Windowing Functions appeared first on SQLServerCentral.
The post SQL IS NULL and SQL IS NOT NULL Examples appeared first on SQLServerCentral.
To get started, follow these steps to find and use the default snippets in Azure Data Studio. In […]
The post Optimize SQL LIKE Wildcard Searches appeared first on SQLServerCentral.
T-SQL Notebooks is one of the new features announced during FabCon Europe. The most distracted could miss […]
The post Troubleshoot Chained SQL Server CTE appeared first on SQLServerCentral.
Let’s say we have a couple of update statements we need to run every 15 minutes in the […]
I ran across an article that showed calculating a running total with a twist. In this case, the […]
If you’re using TRY/CATCH to do exception handling in T-SQL, you need to be aware that there are […]
The post SQL ROUND Function vs. Bankers Rounding with T-SQL appeared first on SQLServerCentral.
The post Express a Number or Currency in Words with T-SQL Code appeared first on SQLServerCentral.
The post Create Document Templates in a SQL Server Database Table appeared first on SQLServerCentral.
I’m not talking just about Microsoft SQL Server specifically here, nor T-SQL. Let’s zoom out a little and […]
Microsoft Azure offers the Azure Elastic Job agent as a managed service, enabling efficient scheduling of T-SQL workloads […]
The post Finding Sister Locations to Help Each Other: Answers & Discussion appeared first on SQLServerCentral.
For this month’s T-SQL Tuesday, Pinal Dave asked us if AI has helped us with our SQL Server […]
A couple of days ago I was doing some cleaning on some Azure SQL DBs and shrinking some […]
A common question that arises in SQL Server collation discussions is whether a binary collation (BIN2) is functionally […]
I didn’t say that – Guy Glantser did. Guy Glantser is an Israeli SQL Server guru with a […]
For this month’s T-SQL Tuesday, I asked y’all to write about the most recent ticket or issue that […]
Introduction In this article, we will see how to work with GitHub Copilot. GitHub copilot is an interesting […]
Introduction Table variables are special types of local variables that can be used to store data temporarily, similar […]
Provisioning infrastructure in a timely and reliable manner is essential for agile development. One well-liked method that lets […]
The post Gracefully Handle Errors using TRY CATCH Logic in SQL Server Stored Procedures appeared first on SQLServerCentral.
Introduction This article celebrates a classic algorithm [1] of Dijkstra (1930 – 2002) which finds a path of […]
When encrypting a database column, equality searching can be preserved by using a deterministic encryption algorithm. A deterministic […]
The post SQL GROUP BY Alias – An Oracle feature that would be great in SQL Server appeared […]
In the realm of data analysis, being able to understand the relationships between sequential data points is paramount. […]