avoid columns data "" in ssis package

  • 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

  • Use "text qualifier" in File Connection Manager as " (doubleQuotes).

    🙂

  • 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/

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply