How to modify SSIS "Flexible File Source" character limit

D2d3d4d5 20 Reputation points
2025-01-03T14:05:24.3466667+00:00

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

SQL Server Integration Services
SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,626 questions
0 comments No comments
{count} votes

Accepted answer
  1. ZoeHui-MSFT 39,496 Reputation points
    2025-01-06T01:55:26.48+00:00

    Hi @D2d3d4d5,

    Right click Flexible File Source and choose 'show advance editor', Input and output property.

    Change the output column length to see if you have limit it to 100.

    Regards,

    Zoe Hui


    If the answer is helpful, please click "Accept Answer" and upvote it.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.