HI gurus,
Please help me on this. I am going to partition the table based on number column DATASEQ (number 20)
when each time the table updated, it will have new sequence value in DATASEQ. it is need to be partitioned. i decided to go for INTERVAL partitioning .
PARTITION BY RANGE (DATASEQ)
INTERVAL(1)
(PARTITION P1 VALUE LESS THAN
)
will it be good for partitioning the sequence?
Pls help
S