• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

SSIS merge of data

Homerboy

Lifer
I have two queries, one queries against the DIARYINT table and the other against the ACTIVE table. Each are group by employer number.

What I want to do is JOIN these two into ONE table so that I have all my employees each in a row and then the 10 columns from ACTIVE query and 5 columns from the DIARYINT query. I thought I could use Merge Task, but that doesn't seem to be working (or I am doing it wrong) as it is giving me two rows for each employee... one with the ACTIVE data and the other with the DIARYINT (and filling in the other with NULL)

The number rows returned in the DIARYINT query may not be EXACTLY the same as the number of rows in the ACTIVE query. (in some cases out of the 60 employees, not all may have entries in the ACTIVE, or in the DIARYINT, but I want all rows represented.

Does that make sense?
 
Are you using the Merge Transform or the Merge Join Transform? Merge Join allows for LEFT, INNER, or FULL joins. Make sure your data is sorted before you feed the task, otherwise it will blow chunks.
 
Back
Top