简体   繁体   中英

Issue with commas in the column while exporting SQL Server query result to .csv file with double quotes the data is splitting up to next columns

I have an issue with commas in the column while exporting SQL Server query results to a .csv file. The data is splitting up to next columns with double quotes, using SSIS.

This is my sample data:

EmpId    Location    Dept
---------------------------
 101     Nyc,AUS     It,HR
 102     Nyc,AUS     It,HR

When exporting this data into a .csv using SSIS, the data is splitting next column though I used text-qualifier double quote (").

Any suggestions will be appreciated

You might want to use another column delimiter, such as ";" instead of "," when exporting it to.csv When using text qualifier you have to make sure they are applied on the export also. Open your.csv by notepad++ or any text editor and see if each Location-entry is surrounded by double quotes (")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM