Following is sample from my application
Source- Tabbed Delimited file Col1 Col2 Col2 aa a 1 2 da a 1 2 ca a 1 2 ba a 1 2
Destination- OLE DB Table
create table test_data_1 (col1 varchar(100), col2 int, col3 varchar(100))
Issue- all the rows are copied Except the last Row, when check debug file, there is a warning saying last line has Partial data hence ignored.
Any suggestions on how to fix this issue in SSIS?
Data is valid data.