2022-09-02 (first published: 2022-08-23)
10,626 reads
2022-09-02 (first published: 2022-08-23)
10,626 reads
2022-08-22
673 reads
Step-by-step guide to solve the "INSERT EXEC cannot be nested" problem by using a CLR when unit testing stored procedures using the tSQLt framework.
2022-08-19
39,686 reads
Learn how to create a table in SQL Server using T-SQL along with several different examples that build upon each other to create the final table.
2022-08-19
2022-08-08
612 reads
In this article we look at how to generate random dates in SQL Server to build a sample dataset along with code and examples
2022-08-05
2022-07-27
595 reads
In this article we look at how to generate random dates in SQL Server to build a sample dataset along with code and examples
2022-07-27
You can summarize data to get counts, averages, sums, and more using GROUP BY in T-SQL queries. Greg Larsen shows you how.
2022-07-25
Learn different ways to add comments to your T-SQL code when working with SQL Server along with several examples.
2022-07-18
A while back I wrote a quick post on setting up key mappings in...
By Steve Jones
In 100 years a lot of what we take to be true now will...
At Saturday the 21st of February I’m presenting an introduction to dimensional modelling at...
Hi, i'm running vs2022. I'm trying out a c# script that i'd like to...
Comments posted to this topic are about the item Missing the Jaro Winkler Distance
I upgraded a SQL Server 2019 instance to SQL Server 2025. I wanted to test the fuzzy string search functions. I run this code:
SELECT JARO_WINKLER_DISTANCE('tim', 'tom')
I get this error message:Msg 195, Level 15, State 10, Line 1 'JARO_WINKLER_DISTANCE' is not a recognized built-in function name.What is wrong? See possible answers