I have a DT_DATE column. I'd like to achieve a conditional split to ignore all records for which the date is below a specific hardcoded date (eg: 2007-03-01).
I'm having a hard time trying to express this using the conditional split transform.
What is the correct syntax to express a DT_DATE literal ?
eg:
[date] < (DT_DATE) "2007-03-01"
regards
Thibaut
What you have should work fine. I built a little test package to verify, and each of these worked as expected:
Code Snippet
HireDate < (DT_DATE)"1998-01-30"
Code Snippet
[HireDate] < (DT_DATE)"1998-01-30"
Code Snippet
HireDate < (DT_DATE)"01/30/1998"
Code Snippet
[HireDate] < (DT_DATE)"01/30/1998"What behavior are you experiencing that prompts you to ask the question?
|||Are you sure [date] is a DT_DATE column and not a DT_DBTIMESTAMP column? That is, does it contain a time component?Just double checking.
No comments:
Post a Comment