I am new to SSIS. I want to retrieve newly inserted value from destination CRM that is Identity column
My source is SQL server and destination is CRM database
I am new to SSIS. I want to retrieve newly inserted value from destination CRM that is Identity column
My source is SQL server and destination is CRM database
There is a CrmRecordId
column in the output of the destination
component. This means you can't see it in the Insert component, but you can access it in child steps.
There is also an IsNew
column that may be of use (e.g. if you're doing an Upsert
)
CrmRecordId
and IsNew
In your destination step, you will find a checkbox for CrmRecordId. It will be check by default.
Then, you can use the id from the destination node. In my case, I count the number I created and log the guids.