The End of Year Career Evaluation
Steve lists a few things to think about for an end of year career evaluation.
Steve lists a few things to think about for an end of year career evaluation.
This article dives into all the math required to convert historical times between time zones.
This article demonstrates how we can use a Flyway placeholder as a simple on/off switch for each task, during Flyway migrations.
As a part of my DBA activities, I do a lot of SQL Server installations every week. Most of the time, I install the instance with the default collation. A collation is a configuration setting in SQL Server that determines how the database engine should read the data. SQL Server has huge list of collations […]
This article looks at how to calculate MACD indicators using a set of T-SQL code and data stored in a SQL Server database.
The examples so far in this series have all used repeatable read isolation to acquire shared locks on qualifying rows and hold them to the end of the transaction. This was convenient for the demos but repeatable read isolation isn’t common in everyday use.
Building on his last article, Frank shows how to add parameters to your stored procedure calls from PoSh.
Many software packages are moving to the cloud, but Steve doesn't like to see this without some ability to extract data.
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