SSIS Variables vs Parameters (SSIS Denali)

后端 未结 6 1164
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-24 14:09
  1. What is the difference between Variables and Parameters in SSIS Denali?
  2. If there is any difference then What is that which Variables cannot do that Parameter
6条回答
  •  悲哀的现实
    2020-12-24 14:47

    The variables & parameters are similar to that are in java, we pass/through some values to certain method/task in the form of parameters and we use them in that particular task we cant change those values since they are external things for that method similarly in SSIS the Project Parameters are used to set certain variables or connections dynamically in the package. where as variables are limited internal to the package level.

提交回复
热议问题