I have a flat file that has fields delimited by tilde {~} and rows delimited by {CR}{LF}. The problem is, my source is spitting out the {NULL} (&H00) at the end of the row.
The data displays correctly in the pre-viewer (with a non-print symbol at the end of the last field), but gives an error when I try to run the package.
Example:
“data”~”data”~”data”{NULL}{CR}{LF}
I can process the row in c# using:
“\0\r\n”
as the row delimiter. What is the equivalent notation for SSIS?
Thanks,