I'm facing the following problem:

I have two inputs:
1) I have a csv base file with 35 columns and their proper headers.
2) I have a variety of given files, not controlled by me, that may or may not contain the 35 columns and, even worse, they may be out of order.

I have to match the columns from the second csv file to the columns in the first csv file. If the second csv file doesn't have all the 35 columns, I should create those in their proper order.

Once I have a proper csv file (one which the header looks like the first csv header) I would pass it to a script that manages the data referencing them by the columns headers.

One possible solution would be getting the existing field inputs inside the script, however, I'm not able to do that because the fields seem to be fixed referencing the existing column headers of the second csv file. Therefore, when I try to access a column that doesn't exist, I end up with an exception...

Any help would be greatly appreciated!

link|improve this question

1  
Just to follow up on the issue. I've given up on that. I solved the problem with kettle using a local database. But what really solved my problem was a little jar that I developed just to treat the csv files outside kettle. My friend is still looking for a solution on that because he has to use only kettle =/ – wleao Jul 19 '11 at 21:34
This is very difficult in PDI. You should take a look at the metadata injection step - that will probably do what you want. Effectively you'd have to read the file, work out the structure, and then inject that into the transform to then read the file itself. – Codek Mar 29 at 12:30
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.