I am interested in algorithm in T-SQL calculating Levenshtein distance.
|
feedback
|
|
Arnold Fribble proposes this one:
| |||||||||
feedback
|
|
IIRC, with SQL Server 2005 and later you can write stored procedures in any .NET language: Using CLR Integration in SQL Server 2005. With that it shouldn't be hard to write a procedure for calculating Levenstein distance. A simple Hello, World! extracted from the help:
Then in your SQL Server run the following:
And now you can test run it:
Hope this helps. | |||
|
feedback
|
|
| |||
feedback
|
|
You can use Levenshtein Distance Algorithm for comparing strings Here you can find a T-SQL example at http://www.kodyaz.com/articles/fuzzy-string-matching-using-levenshtein-distance-sql-server.aspx The algorithm simply returns the stpe count to change one string into other by replacing a different character at one step | |||
|
feedback
|