SSIS Data Type for VARCHAR(MAX)

jn93 671 Reputation points
2022-10-13T09:16:51.343+00:00

Hi, I have one of the column to store 32700 data length as VARCHAR, So I created in table for this column as VARCHAR(MAX). How to configure in SSIS advanced editor for this type of data so there is no truncation? Anyone can help. Appreciate it.

249980-image.png

250006-image.png

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

Accepted answer
  1. ZoeHui-MSFT 41,491 Reputation points
    2022-10-13T09:31:28.777+00:00

    Hi @jn93 ,

    You can set the data type of the column as textstream[DT_TEXT].

    DT_TEXT could contain an ANSI/MBCS character string with a maximum length of 2^31-1 (2,147,483,647) characters.

    integration-services-data-types

    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.