ACE Director Alum Daniel Morgan, founder of Morgan's Library, is scheduling
complimentary technical Workshops on Database Security for the first 30
Oracle Database customers located anywhere in North America, EMEA, LATAM, or
APAC that send an email to
asra_us@oracle.com. Request a Workshop for
your organization today.
Purpose
The four functions included in the package use different methods to compare a source string and destination string, and return an assessment of what it would take to turn the source string into the destination string.
This functionality is defined as a stand-alone package header compiled with PRAGMA INTERFACE(c....
This package was deprecated as of 05-October-2017 but is still present in version 19.3.
Instead of simply calculating the number of steps required to change the source string to the destination string,
determines how closely the two strings agree with each other and tries to take into account the possibility of a data entry error
utl_match.jaro_winkler(
s1 IN VARCHAR2,
s2 IN VARCHAR2)
RETURN BINARY_DOUBLE;
SELECT utl_match.jaro_winkler('expresso', 'espresso') DIST
FROM dual;
Returns an integer between 0 and 100, where 0 indicates no similarity at all and 100 indicates a perfect match but tries to take into account possible data entry errors
utl_match.jaro_winkler_similarity(
s1 IN VARCHAR2,
s2 IN VARCHAR2)
RETURN PLS_INTEGER;
SELECT utl_match.jaro_winkler_similarity('expresso', 'expresso') SIM
FROM dual;