Get Information on Current Traces Running
This is just a quick informational query to save as a snippet to get some quick information on running traces,...
2014-12-02
940 reads
This is just a quick informational query to save as a snippet to get some quick information on running traces,...
2014-12-02
940 reads
I was looking for an efficient way to eliminate overlapping days when provided with a historical table that provided events...
2014-10-16
975 reads
If you want to create sample random samples when dealing with date calculations to test your results, you can easily...
2014-08-12
517 reads
Common date values you may need to reference that you may not want to write from scratch each time.
Hope...
2014-08-12
1,050 reads
A step by step explanation on one way to get a consecutive period of months, which could easily be adapted...
2014-05-19
653 reads
Ran across a comment the other day that scalar functions prohibit parallelism for a query when included. I thought it...
2014-02-11
853 reads
If you run across migrating or copying a database structure for some purpose, yet need to change the database references...
2013-08-13
1,933 reads
I’ve never really used the F1 key for help files with most applications. I was surprised at the usefulness in...
2013-07-24
864 reads
If you have a set of columns inside your table that you want to allow nulls in, however if one...
2013-07-18
1,231 reads
When dealing with large amounts of objects in a database, navigation can be tedious with SSMS object explorer. This extender...
2013-07-16
737 reads
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...
Hello, I inherited a number of tables with like 20-30 column using nvarchar(256) in...
Hi, i'm running vs2022. I'm trying out a c# script that i'd like to...
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