Understanding SQL Server Full-text Indexing – (Part 2)
Checkout the final part of this two part article series here, in which I discussed how to create full-text index...
2013-09-17
540 reads
Checkout the final part of this two part article series here, in which I discussed how to create full-text index...
2013-09-17
540 reads
SQL Server allows applications and users to execute full- text search queries against character based data in SQL Server tables....
2013-09-17
638 reads
Scalability is the ability of a system to support an increased workload by adding incremental system resources without fundamentally changing...
2013-08-06
552 reads
Creating SQL Server upgrade paths from one version to another is a task that every database administrator is eager to...
2013-08-06
756 reads
Checkout the part-3 of my five part article series on Guide to SQL Server Table Indexeshere, in which you will learn...
2013-08-06
552 reads
Checkout the part-2 of my five part article series on Guide to SQL Server Table Indexeshere, in which you will learn...
2013-08-06
528 reads
SQL Server allows applications and users to execute full- text search queries against character based data in SQL Server tables....
2013-08-06
933 reads
Normalization, which is the key part of the OLTP databases logical design process, is a design requirement for OLTP databases....
2013-08-06
549 reads
One of the most important tasks for every database administrator (DBA) is to ensure that query times are consistent with...
2013-07-15
1,380 reads
SQL Server query optimizer uses statistics to create query plans that improve query performance. For most queries, the query optimizer...
2013-07-15
1,514 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