SQL Server Script to Create Windows Directories
An interesting script to handle file tasks from within SQL Server.
An interesting script to handle file tasks from within SQL Server.
A few notes from a consulting engagement that might get you to think about what to expect from your next contractors.
My company is just starting to look at adding functionality to retain historical data for key tables and columns for auditing purposes in many of our SQL Server databases. I have seen some of your recent tips related to triggers (Forcing Trigger Firing Order in SQL Server and Trigger Alternatives in SQL Server - OUTPUT Clause). Based on using triggers or a similar technology, what is the best way to store the historical data?
QL 2005 adds two new methods – signing with certificates and impersonation with EXECUTE AS – that can manage cases where the classic method of ownership chaining fails. I explain the two new methods, as well as the old one, and warns you about the pitfalls.
The other major database vendors have been making investments by purchasing database related companies, but what has Microsoft done?
The other major database vendors have been making investments by purchasing database related companies, but what has Microsoft done?
The other major database vendors have been making investments by purchasing database related companies, but what has Microsoft done?
Commentary on the database related news of the past week. SQL Server 2008 Certification, deep inside SQL Server and the Library of Congress.
What is going on with all this production data? Steve Jones talks about the need to manage data growth and is it really worth the resources.
Register for the 2008 PASS Summit in November today and save! Use our code when you register and attend our opening night reception.
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...
By Steve Jones
I haven’t done one of these in awhile, but I saw an article recently...
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