Skip to content

Instantly share code, notes, and snippets.

@hgirish
Created August 18, 2024 07:08
Show Gist options
  • Save hgirish/ecf9f90b84b54fb7cffc51cd53f87f15 to your computer and use it in GitHub Desktop.
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
# 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