I am working with an Oracle database and I need to be able to partition the data in a table. I understand that Rracle has an ora_hash function that can partition the data i
Jon Heller's answer has some more details, so go upvote his answer. Since this is the accepted answer still, I'll inline part of his response:
ORA_HASHis definitely deterministic for data types that can be used for partitioning, such asNUMBER,VARCHAR,DATE, etc.But
ORA_HASHis not deterministic for at least some of the other data types, such asCLOB.