0

I had data in a CSV file, which appears in a notepad something like this:

enter image description here

In SSIS, when I try to load this file in a Delimited format, the data which appears in the preview gets messed up due to the commas which occur in the numeric values, eg. in thousands and millions. The data looks something like this:

enter image description here

Is there any way in which this problem can be taken care of in the connection manager itself ?

Thanks!

user5071535
  • 1,312
  • 8
  • 25
  • 42
user2673722
  • 295
  • 2
  • 6
  • 15

1 Answers1

2

Use Text Qualifier as shown here:

enter image description here

This will take care of the columns that have quotes inside. Sometimes it gets really bad with CSV data, and I've had to resort to script components doing some cleanup, but that's really rare.

Raj More
  • 47,048
  • 33
  • 131
  • 198