generated excel from SSIS but getting quote in every column?

前端 未结 4 1515
小蘑菇
小蘑菇 2020-12-18 10:43

I have generated and excel from SSIS package successfully. But every column is having extra \' (quote) mark why is it so?

4条回答
  •  情书的邮戳
    2020-12-18 11:33

    First, define the field types for your excel destination in SSIS, any non-text fields will format properly without the '. Then, add a derived column transformation between your source and destination, and use a replace statement for any text columns. Should be:

    (REPLACE(Column1, "'","")
    

提交回复
热议问题