I have two tables, source contains standard rows of data. I would like to copy a selection of these rows to a destination table within the same database. I've looked at Pipeline but it looks like it doesn't fit, only if I'm creating the destination table? Otherwise, it won't let me map the columns correctly.
Building a datastore to select the source is easy, but then what to do with the rows? Copy them to a new datastore? Iterate through the source datastore and ?? Then issue an Update on the new datastore?
Fallback option is embedded SQL which is messy but works.
Any thoughts?