Bounderby
Bounderby

Reputation: 525

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

Upvotes: 2

Views: 6555

Answers (1)

Registered User
Registered User

Reputation: 8395

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.

Upvotes: 2

Related Questions