vote up 0 vote down star

I'm a newbie to using SSIS for data imports - I have a couple of files that I want to import into my database schema, but I'm going to need to run this once every 3 months; the file names change based on the quarter e.g. SKU1QTR will become SKU2QTR.

How can I handle a situation like this with SSIS? Is there a way to specify the file names (there are at least 6 files like this) or, better yet, just specify the numeric portion since the rest of the file always stays the same?

flag

60% accept rate

2 Answers

vote up 1 vote down

Create a script task and do something like this, where FlatFileCSV would be the name of your connection

Dts.Connections("FlatFileCSV").ConnectionString = 
"E:\SomeFile" + theDate.ToString("yyyyMMdd") + ".csv"
link|flag
Is there a way I can get it to prompt me for that when I execute the package, so I wouldn't have to go into it and change it each quarter? – Wayne M Feb 12 at 18:20
make it dynamic or add something like this in a script task MsgBox("Change connection") just be aware that if this runs from a job that it will wait for that box to be clicked (which of course it can't be) – SQLMenace Feb 12 at 18:58
vote up 0 vote down

Put your filename/connection string in a configuration file. If that truly is the only thing that is different, then you can even run the package from command line and you won't need to open BIDS at all.

As you are a self described newbie, this is a bit more advanced, but it is a technique worth knowing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.