August 1, 2016 at 1:03 pm
Hello,
I have a data set that contains; Employee Status, First Name, Last Name,Reports To, Hire Date
Weekly, I will receive a list of Terminated/New Hires and Transferred Employees in the same exact Format.
I would like to add new rows for new employees and I'd like to fill in a date in a new column for terminations and transfers.
Ultimately, the Data will look like;
Employee Status, First Name, Last Name,Reports To, Hire Date,Termination Date, Transfer Date
Thanks for any ideas/suggestions.
August 1, 2016 at 2:10 pm
This is pretty basic update/insert stuff.
Stage the data.
Update existing.
Insert new.
Rather than force it all to happen in SSIS I prefer to use a data flow to get the staging data and then an execute SQL task to run a stored procedure to do the update/insert.
August 1, 2016 at 2:27 pm
Thanks for the reply. I created what I was looking to do.
August 1, 2016 at 4:18 pm
mbrady5 (8/1/2016)
Thanks for the reply. I created what I was looking to do.
What method(s) did you use?
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply