Hi All,
We are loading a Flatfile from Application server in a DSO ( File type is CSV file, ). All the records are successfully loaded except one.
This record is longer than others in terms of total number of characters of all the fields and it gets truncated at one point and as a result date field gets 201411 instead of 20141128.
Below if the example flat file.
Header 1 | Header 2 | Header 3 | Header 4 | Header 5 |
---|
ABC | USA | TEST | 90 | 20141126 |
XYZ | EUROPE | TEST | 100 | 20141127 |
PQR | CHINA | TEST123456789 | 110 | 20141128 |
| | | | |
When we load this flatfile to our DSO, we get the below dataset.
Header 1 | Header 2 | Header 3 | Header 4 | Header 5 |
---|
ABC | USA | TEST | 90 | 20141126 |
XYZ | EUROPE | TEST | 100 | 20141127 |
PQR | CHINA | TEST123456789 | 110 | 201411 |
| | | | |
As seen the last record is not completely updated and being an invalid date it also throws an error.
Please advise what could be the possible reason for this and solution if any.
Thanks
Manish Sharma