I have a table dbo.Test whose columns (ID,Query_Column)
ID Query_Column
1 SELECT CustomerKey, FirstName, LastName, MaritalStatus, Gender FROM CUSTOMER_DETAILS
In Query column I have a select statement which have some data.
Now In my SSIS Package I want to make it as Source columns and Load into Destination Table dynamically.
Source
CustomerKey
FirstName
LastName
MaritalStatus
Gender
Destination
CustomerKey
FirstName
LastName
MaritalStatus
Gender
Now In my SSIS Package I want to make it as Source columns and Load into Destination Table dynamically.
Can anyone suggest me on this .