I've come across some code in the application I'm working on that makes a database call merely to call the ORA_HASH
function (documentation) on a UUID string. The reason it's doing this is that it needs the value to make a service call to another system that appears to use ORA_HASH
for partitioning.
I would like to know the algorithm ORA_HASH
uses so that I can re-implement it to make a similar service call for an application that won't have access to a real database, let alone Oracle. I've only been able to find what amounts to Oracle API documentation so far.
Just to be super clear: I need to clone ORA_HASH
because that's what another system that's outside of my control uses, and I need to integrate with that system. Yes, it would nice if could use a really standard algorithm, like MD5, but I can't, unless that's what ORA_HASH
is under the covers.
Answers or comments that propose the use of a hash algorithm besides ORA_HASH
are not helpful. This question is specifically about ORA_HASH
, not hashing or partitioning in general.
This doesn't answer the OP question of the actual algo behind ora_hash. This is just an example of using ora_hash in pl/sql (answering @JonHeller comment):
The function:
And using it:
Dbms Output:
You can also mess around with RESULT_CACHE or other techniques to try to speed things up even more.
Its very fast already. For example, calling the function 1 million times on a large table:
So basically 100k rows per second, that includes any context switches you may be worried about.
If you need to reproduce ORA_HASH because of performance, I would suggest that your performance bottleneck may be elsewhere.