This is for SQL Server:
I have a table that has been partitioned. Sometimes, I need to completely update an existing partition - the updates could be extensive enough to touch all rows of the partition.
. Can I..
- Make a copy of the partition
- Apply updates
- Merge the updated partition back?
I am worried about speed of updates. Want to do all updates offline (users would be using the partition actively), and, if possible, switch the updated partion in, so that there would be minimal impact to users...

ALTER TABLE ... SWITCHwill be your best friend. – Jon Seigel Aug 20 '12 at 19:34