To the experts in the field:
There is probably a very simple solution that is avoiding my grasp.
I have a For Loop which I want to execute as long as a variable called BeforeRunDt = CurrentDate. Both are DateTime data types and I am using the following expression:
@.BeforeRunDt==@.CurrenDate
I get an error stating "Cannot convert expression value to propeerty type"
I understand that the result of the expression should be a boolean value but am just struggling on how to create it.
Thanks!
I believe that the following will work:
@.BeforeRunDt == @.CurrentDate ? True : False
Edit: You would set the variable to type boolean, and evaluate as expression to true with the above as the expression...
|||Wow! Now I feel really stupid. After all the fuss I figured that I needed a For Each Loop instead and so I am back at square one trying to learn how to use that transform.
Thank you very much for taking the time to respond to my question!
|||
desibull wrote:
Wow! Now I feel really stupid. After all the fuss I figured that I needed a For Each Loop instead and so I am back at square one trying to learn how to use that transform.
Thank you very much for taking the time to respond to my question!
I would still have expected the expression in your first post to work.
Try replacing it with
(DT_BOOL)(@.BeforeRunDt==@.CurrenDate)
and see if it works.
cheers
Jamie
|||I was slightly surprised that his first expression wouldn't work as well... but if it isn't cast to the proper type that kind of makes sense I suppose...|||
EWisdahl wrote:
I was slightly surprised that his first expression wouldn't work as well... but if it isn't cast to the proper type that kind of makes sense I suppose...
Yeah. it could be similar to the issue talked about here:
NULLs in expressions gotcha
(http://blogs.conchango.com/jamiethomson/archive/2006/10/12/SSIS_3A00_-NULLs-in-expressions-gotcha.aspx)
-Jamie
No comments:
Post a Comment