I am trying to perform ETL from one table (Table A) to another table (Table B) using SSIS packages.
I have OLE DB Source and OLE DB Destination. But I need to only transfer those rows of Table A which are not present in Table B.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the LookUp component inside your data flow to check table B for data that already exists.
The LookUp component NoMatchBehavior property can then be configured (from right click, properties) to “Send rows with no matching entries to the no match output”.
When you drag the link to the target table, you will be asked whether you want to use LookUp Match or LookUp No Match