July 4, 2007 at 12:36 am
Hi,
I'm trying to build a SSIS package to transfer data and data structures from a SQL Server database to an Access MDB. Some column data types have to be modified, some columns dare not to be transferred. The information, which columns to transfer, are located in a table "ExportConfiguration".
What I did so far: I set up a package flow that has as the "core" component a for-each-container that iterates through all the tables that are to be processed. Each iteration creates one table structure and one select-statement, that should be used to read the data from the sql server.
And here is my problem: As I don't know the metadata of the data flow at design time, how can I transfer the data? Some thoughts:
What would you do and how?
Thank you in advance
Alexander
July 4, 2007 at 1:41 am
You cannot change the meta data at run time for a data flow.
Your best bet is to dynamically create SQL to do the select and insert and execute it as a SQL statement.
Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply