I have a csv file with below formatted data.
File: Sample.csv
Id,Name,Address
1,Abcd,street1,3rdcross,xxxx
2,Cfre,2ndmain,3rdstreet,yyy
3,Asdf,4thmain,1stcross,zzz
Need to load the data to table like below.
Table: Sample
Id Name Address
1 Abcd street1,3rdcross,xxxx
2 Cfre 2ndmain,3rdstreet,yyy
3 Asdf 4thmain,1stcross,zzz
How to acheive this using SSIS ?
If we use a comma delimiter, then the address column will split into 3 columns.
Initially when Text Qualifier is set to none, the columns are separated.
When changed Text Qualifier to double quoted " then it was perfect.