开发者

Can I initialize two variables in an SSIS For Loop Container?

Is there any way to initialize the value of two variables in the InitExpression of 开发者_JS百科a For Loop Container in SSIS?

For example:

InitExpression:   @BeginDate = (DT_DBTIMESTAMP) "1/1/1900"; @EndDate = (DT_DBTIMESTAMP) "1/1/2007"
EvalExpression:   @BeginDate < GETDATE()
AssignExpression: @BeginDate = @EndDate; @EndDate = DATEADD("Month", 1, @EndDate)

Thanks


I don't believe that is possible. However, you could set the @EndDate variable definition as an expression and make it do these calculations in the expression. The For Loop Container would only increment the @BeginDate and the @EndDate would change as it changes.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜