SQLite and the Performance Implications of Indexes
Indexes make an enormous difference in the read speed of a databases. I have previously mentioned that adding proper indexes...
2017-02-05
509 reads
Indexes make an enormous difference in the read speed of a databases. I have previously mentioned that adding proper indexes...
2017-02-05
509 reads
It is occasionally usefully to display a different values in an Access combo box than what is actually stored in...
2016-10-13
441 reads
Python Distributions Python is free and open source software. A programmer could download the executables for Python directly from the...
2016-07-01
577 reads
When doing technical writing, or for that matter most forms of writing , we need to be able to refer to...
2016-02-17
657 reads
The people at Webucator were kind enough to make a video based on my article on dealing with SQL Server...
2015-11-17
393 reads
Although generally I prefer to create custom interfaces for my databases using fully developed programming languages like Python or C#....
2015-07-03
486 reads
I have been thinking about resumes a great deal lately. Since I recently passed the Bar Exam, I have been...
2015-06-14
546 reads
I was recently doing some testing that required a fairly large table. I created the test table, and set it...
2014-05-26
805 reads
I have seen people build procedures that rely on a result set being returned in a certain order. This is...
2013-09-14
749 reads
SQL Server uses a three valued logic with True, False, and Unknown. And, normally, SQL Server Nulls are not comparable....
2013-08-21
1,284 reads
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
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...
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