Created
August 18, 2024 07:08
-
-
Save hgirish/ecf9f90b84b54fb7cffc51cd53f87f15 to your computer and use it in GitHub Desktop.
SSIS import date in string to DB date when date is blank using Derived Column Task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# expression for date column in Derived Column Task | |
TRIM(DateUpdatedstring) == "" ? NULL(DT_DATE) : (DT_DATE)DateUpdatedstring |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment