FOR Loop container in SSIS 2012 -


i using loop container in ssis 2012. want loop execute unless value of boolean variable have false. when try set evalexpression property of loop container error: cannot convert 'system.boolean' 'system.string'. set expression as:

@[user::myvar] = false 

how can set expression if value false break out of loop?

you have 1 2 issues.

the first myvar must of type boolean

the second , more insidious assigning value = of false variable. want test whether variable false. comparison operator ==

enter image description here


Comments

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -