Hi Team,
I made a range partitioned table as below;-
db2 "create table test.part_test (a int, b int) partition by range (b)(starting 1 ending 4 every 2)"
now I will be able to enter values from 1 to 4 and every two will go in different partitions by name PART0 and PART1
now the issue is I want to extend this partition from ending at 4 to suppose 10 so that the table keeps on generating a partition after every 2 values till 10, please suggest me the best way to do it, which would have minimum outage and also minimum effort.
Would be really thank ful to your help