|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Tuesday, May 21, 2013 11:31 AM
Points: 162,
Visits: 3,821
|
|
hi friends i have small doubt in ssis package source data come text file that file contain data like
id , name 1 , "ravi" 10 , "venky" 1000 , "dd" 14200 , "jai"
when ever weload this data into destnation that time data must be load like this way id , name 1 , ravi 10 , venky 1000 , dd 14200 , jai
plese tell me how to solve this issuse
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Thursday, May 09, 2013 6:06 AM
Points: 47,
Visits: 266
|
|
Use "text qualifier" in File Connection Manager as " (doubleQuotes).

|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Thursday, May 09, 2013 6:06 AM
Points: 47,
Visits: 266
|
|
Or in more complex scenario using the Derived column, you can use the given below expression: REPLACE([Column 1],"\"","")
Thanks and Regards, Sumit Joshi Moblie:- 0-9650899699, Skype: sumit.joshij Blog: http://msbi2012.blogspot.in/
|
|
|
|