Could you create a transfer table that has the same fields as the main table but no partitioning. Then BCP into this new table rather than the existing table. Then select the good data out from the transfer table and insert it into your existing table. Obviously you’d want to report any bad data and you’d want to clear the transfer table before BCP’ing into it each time.
How much data do you hold? Is the partitioning by date necessary? - I thought the aim of partitioning would be to split queries across multiple partitions but all your data access would still be on the one partition assuming people are mostly interested in the latest data.
EDIT: I assume you're on Sybase ASE 15 where it allows you to split partitions by value - I haven't used this before so take this with a pinch of salt - just add an extra partition that takes the data outside your current range i.e.
Code:
date < current_min on my_new_segment
date > current_max on my_new_segment
As I say I can't find much info on partitioning by value. I assume there isn't a syntax like "else on my_new_segment" that you could add at the end. It seems odd they wouldn't provide for that.
Mike