Can SSIS work with custom Data Dictionaries?

  • Hi,

    I am new in SSIS and wonder how to load data from multiple same by structure excel files, adding the date of each load. For example, file_1 with A,B,C columns loaded into table will become table_1 (extract_date, A,B,C).

    The straight-forward solution will be to use a simplest custom Data Dictionary - put extract dates and excel filenames into a table in SQL Server. The question, therefore, goes: can SSIS variables get the values from this table in a loop someway?

  • You can use an execute sql task that return the results of a sql query.

    Store the results in a variable of type Object.

    Use a for each loop and iterate the object variable and map the columns to variables in the loop.

    hope that helps

  • Just to clarify:

    For each Excel file, you want to

    a) Populate one line of an ImportLog table (LogID, Filename, LoadDate)

    b) Populate a physical table with the Excel source data, plus LogID so that you can always identify where the data came from?

    Sounds like a ForEach loop to me too ....

    Phil

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply