Search notes:

Oracle DBMS_UTILITY.GET_HASH_VALUE

dbms_utility.get_hash_value computes a hash value for a given string (varchar2).
The second parameter (base) specifies the minimum number that is returned.
The third parameter (hash_size) specifies the number of buckets for the hash.
The returned number is an integer between base and hash_size - 1.
select
   dbms_utility.get_hash_value('a',    0, 128) val_1,
   dbms_utility.get_hash_value('a', 1000, 128) val_2
from
   dual;

See also

ora_hash, dbms_crypto.hash
dbms_utility, dbms_utility.get_sql_hash

Index