A package I am developing will update a list of employees in the destination database. The destination is a OLTP and not a warehouse, so I can't simply truncate and repopulate the target table; I need to run an insert or update on a row-by-row basis depending on whether the record already exists in the destination. Is there an easier way to do this than using a script?