bcp in syntax allows giving the partition. For instance:
bcp MYTABLE:3 in ...
for loading rows into partition 3.
So, to distribute partitions evenly, you may bcp out the entire table, write down the number of rows, truncate the table and bcp in with the syntax above and options -F and -L. -F and -L give the first and last record in the bcp file to be copied into the table. For instance, had the table have three partitions and 3000 rows:
bcp MYTABLE:1 in ... -L1000
bcp MYTABLE:2 in ... -F1001 -L2000
bcp MYTABLE:3 in ... -F2001
Regards,
Mariano Corral