Generate HASH Value for a string


/ Published in: SQL
Save to your folder(s)

GET_HASH_VALUE Function

This function computes a hash value for the given string.

Syntax

DBMS_UTILITY.GET_HASH_VALUE (
name VARCHAR2,
base NUMBER,
hash_size NUMBER)
RETURN NUMBER;


Copy this code and paste it in your HTML
  1. SELECT 'HELLO1', dbms_utility.get_hash_value('HELLO6',5,1232312) FROM dual;

URL: http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_util.htm#i1003646

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.