Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Folks,
I have a requirement in which a reference schema will be there, like : Column A,B,C,D,E,F.
in Day1 : the incoming csv file contains Column A,B,D,F
So, I have to detect the missing columns(i.e : Column C,E) and ingest these 2 columns in the incoming csv file and make a new CSV file with columns A,B,C,D,E,F.
Having null values for Column C,E.
Please suggest me a way to achieve this in Talend.
Thanks in advance
Regards
Subhadeep
Hi,
My input is :
Col A | Col C | Col D | Col F |
1 | 1 | 1 | 1 |
1 | 1 | 1 | 1 |
1 | 1 | 1 | 1 |
My Output should be :
Col A | Col B | Col C | Col D | Col E | Col F |
1 | 1 | 1 | 1 | ||
1 | 1 | 1 | 1 | ||
1 | 1 | 1 | 1 |
Thanks in advance
are your input file in a fix format?