May 27, 2020 at 6:24 pm
I am a newbie to SSIS. I created th3e workflow to import csv files. But the file names change from one customer and month to another and are not consistent. How do I use dynamic file names? Or use a dialog to give file name when importing.
Thanks.
May 27, 2020 at 7:27 pm
I think the answer might depend on how many files you are processing in each run, if there are files in the same folder that you do not want to process, and if there are any similarities in the file names, e.g. a common prefix.
I have some imports of single files sent to me by users. Since these are on demand imports of single files, when I receive one, it’s not a problem to rename it to the name the package expects.
If you process multiple files at once, if you put them all in a single folder and there are no files in that folder that should not be processed, you could use a fully wild carded name in the FOR EACH loop. If there are files in that folder that must be skipped and the file names to import have any similarities, you may be able use a partial wild card name to select only those files.
May 27, 2020 at 8:51 pm
I am a newbie to SSIS. I created th3e workflow to import csv files. But the file names change from one customer and month to another and are not consistent. How do I use dynamic file names? Or use a dialog to give file name when importing.
Thanks.
First of all, SSIS is a server-based technology and dialogs are therefore not the way to go. The package executes on the server and there's no one there to respond to dialog boxes.
The FOREACH container is almost certainly the way to go. This will loop round all files in your selected folder which match the filespec you provide and allow you to map the 'current' file name to an SSIS variable, which itself can be used to construct a connection string, to be used by your data source.
This method works best if all of the CSV files have exactly the same format (column names, column order and number of columns).
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
May 27, 2020 at 9:33 pm
Are all of the CSV files structured the same? The same number of columns - the same types of values for each column?
If they are all the same you can use a for each loop to provide the file names...if they are not then you need a different package for each one or you need to build a dynamic SSIS solution to process each file as a new file (every time) with a new destination table that is built dynamically. That is a very complex solution and requires a lot more work in SQL...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
May 28, 2020 at 11:02 am
There may be 3-4 csv files in each run. The names may not be constant, but the issue is that the process will be run such that, another system will place the files in a specific folder and based on some specific characters in the file name the file will be loaded into different tables.
Thaks.
May 28, 2020 at 11:06 am
ok thanks, I already went thru Google search and did not find anything specific.
There are multiple csv files and depending on naming convention of a part of the file name, the file would be loaded into different tables.
May 28, 2020 at 11:08 am
Well, all csv files belongign to a specific table are structured the same. BUt based on some characters in the file names, they are differently structured nad go into different tables.
I think the best way may be to just some write some code that can then insert into respective tables.
Thanks.
May 28, 2020 at 12:56 pm
Well, all csv files belongign to a specific table are structured the same. BUt based on some characters in the file names, they are differently structured nad go into different tables.
I think the best way may be to just some write some code that can then insert into respective tables.
Thanks.
This is all possible in SSIS, but as you are new to the technology, you may find the learning curve a little steep. Here is one possible solution architecture.
Once this is set up, you can schedule your master package to run as frequently as you wish. If there are no files in the inbound folder, the package will complete successfully without doing anything.
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply