I need to insert some date retrieved from an OLE DB source (sql server) and insert to a table in an ado.net destination (teradata). The destination table name is dynamically generated and passed to the the package. I have problem passing this table name to the ado.net destination.
In the package I create the table in the destination db using the table name passed to the package. Then I set up a data flow, with OLE DB source and ado.net destination. In the destination, I am not able to choose the table/view from the dropdown list and
cannot map the columns, since it will be dynamically determined. In the Expression of the dataflow property, I add a property for
[ADO NET Destination].[TableOrViewName] as @[User::UserID]. I also set ValidateExternalMetadata to false and delayedValidation to true. However, it still does not work. Please help.