Comma within fields in CSV file -import to DB using SSIS

前端 未结 3 1151
自闭症患者
自闭症患者 2021-01-11 21:44

I have a CSV file - It has many values having comma as a part of value.The commas within the fields will mislead my SSIS package

3条回答
  •  迷失自我
    2021-01-11 22:00

    You will need to ensure that all values in the file that have commas as part of the text are enclosed in double quotes ("). Then you can set the text qualifier in your flat file source, and the commas will be loaded as part of the string fields.

提交回复
热议问题