|
yes, db2 will do hash for the partitioning column when you insert new data.
by default the partitioning column is the first column that's not LOB, for example, there could be a function HASH do something like
TargetPartition = HASH(column1)%NumOfPart
hope that makes it clear |
|