I have a requirement to found the fraud customer's , the customer name which are all matching 80% with the fraudulent customer's name. So any one give idea for pattern check. I think this explanation is sufficient to understand.
Asked
Active
Viewed 787 times
3 Answers
3
There are set of standard algorithmns which will help you to acheive the requirement like ..
- Levenstein
- JaroWinkler
- NeedlemanWunch
- SmithWaterman
- ChapmanLengthDeviation..

Ashley John
- 2,379
- 2
- 21
- 36
-
Thanks friends ... really these concepts are new to my life... thanks fr a valuable suggetion.. i will try this now.. – Nagarajan Nov 21 '11 at 10:14
1
You can use Levenshtein for this see Levenshtein distance in T-SQL
The example is in T-sql but you can use it to see the pattern
0
I just created a SQLCLR library for running Levenshtein on Sql Server here. Feel free to contribute. :)

Robert Jeppesen
- 7,837
- 3
- 35
- 50