How to modify the variable in SSIS?

后端 未结 3 872
不思量自难忘°
不思量自难忘° 2020-12-19 07:28

I have a simple String variable with the following value: \"C:\\Test.txt\". Now I would like to edit the variable to point to a different file. I cannot find a way to do tha

3条回答
  •  我在风中等你
    2020-12-19 07:53

    I was also facing the same issue like you where once the variable is declared and define (for eg:var1=text1.csv)in SSIS Variable window I was not able to update the variable value(for eg: var1=text2.csv) in SSIS Variable Window by clicking on the variable value field.

    Applied below fix:- I noticed that I was using var1 variable as a Expression by using expression builder so to update the value(for eg:-var1=text2.csv) I used expression builder window.once you done using the expression builder,you can see the text2.csv is got mapped to var1.

提交回复
热议问题