![]() |
|
|
By: Greg Robidoux | Read Comments (7) | Print Greg is the President of Edgewood Solutions and a co-founder of MSSQLTips.com. Related Tips: More |
|
Problem
When loading data using SQL Server Integration Services (SSIS) I am importing data from a CSV file. Every single one of the columns in the CSV file has double quotes around the data. When using the Data Flow Task to import the data I have double quotes around all of the imported data. How can I import the data and remove the double quotes?
Solution
This is a pretty simple solution, but the fix may not be as apparent as you would think. Let's take a look at our example.
Here is the sample CSV file as it looks in a text editor. You can see that all of the columns have double quotes around the data even where there is no data. The file is comma delimited, so this should give us enough information to import the data column by column.

To create the package we use a Data Flow Task and then use the Flat File Source as our data flow source.

When setting up the Flat File Connection for the data source we enter the information below, basically just selecting our source file.

If we do a quick preview on the dataset we can see that every column has the double quotes even the columns where there is no data. If you open the text file in Excel the double quotes are automatically stripped, so what needs to be done in SSIS to accomplish this.

On this screen you can see the highlighted area and the entry that is made for the "Text qualifier". Here we enter in the double quote mark " and this will allow SSIS to strip the double quotes from all columns.

If we do another preview we can see that the double quotes are now gone and we can move on to the next part of our SSIS package development.

As mentioned above this is a simple fix to solve this problem. If you are faced with this issue, hopefully this gives you a quick answer to get your development moving forward. This same technique can be used to strip any other text qualifier data from your files.
Next Steps
| Share: | Share | Tweet |
|
![]() |
![]() |
Free SQL Server Learning |
| Monday, April 07, 2008 - 9:57:46 AM - william.weber | Read The Tip |
|
I realize this is a very old tip, but I've been searching endlessly for a solution to my problem. How do you deal with embedded text qualifiers in SSIS? I know that DTS dealt with this stuff correctly and I can't for the life of me figure out how to make SSIS read the file correctly. For example: "This is field1","This is ""field2""" In DTS if you selected " as your text qualifier it would correctly give you the following: This is field1, This is "field2" In SSIS it just breaks. Any help is greatly appreciated. |
|
| Monday, August 31, 2009 - 6:13:21 PM - MikeInNH | Read The Tip |
|
Hi William Yeah, the tip published here doesn't work so good if the field separator (comma) is included in the quoted text. However, I believe if you Google "undouble kirk haselden" you will get about 4 hits. You probably know that Haselden is the "father of SSIS" - His solution is to use a script component to parse lines. After some Googling you can probably get the code (in Visual Basic .NET I believe) for the component. Hope that helps. Mike |
|
| Wednesday, June 30, 2010 - 12:20:07 PM - jerryol | Read The Tip |
|
Ha, ha. When I google "undouble kirk haselden" I do get 4 hits. Three of them point to this article, and one is junk. Thanks anyway. |
|
| Wednesday, March 23, 2011 - 12:07:15 PM - Pete | Read The Tip |
|
I have the same problem; how do we get around this!? |
|
| Tuesday, May 03, 2011 - 8:27:23 PM - Adam | Read The Tip |
|
Do'H!!! Such a simple fix. I started manually pulling out the data and ran into a bunch of data conversion errors down the road. Saved me a bunch of time. Thanks! |
|
| Monday, February 20, 2012 - 9:43:19 AM - AmyNxDx | Read The Tip |
|
Thanks! This simple fixed helped me TONS!! |
|
| Thursday, February 23, 2012 - 11:56:15 AM - Suresh | Read The Tip |
|
Thanks Greg, It fixed my issue |
|
|
privacy | disclaimer | copyright | advertise | about authors | contribute | feedback | giveaways | user groups Some names and products listed are the registered trademarks of their respective owners. Edgewood Solutions LLC | MSSharePointTips.com | MSSQLTips.com |