Hello everyone,
I use SSIS to pour CSV data into a database. I use the "Flexible File Source" package to get data from Azure Blob Storage.
When trying to do that with a rather big CSV file, I got one of my values that got truncated.
I did a bit of debugging, and I discovered that there is a 100 character limit for the values for this package.
For instance this will not be truncated:
column1,column2
First value,aaaaaaaaaaaaa...(99 times)
However, this CSV will be truncated :
column1,column2
First value, aaaaaaaaaaaa...(101 times)
This is a problem, as this component does not give the choice of the character limit.
Do you know any work-around ?
Thanks in advance