Search code examples
sql-serverssisetlderived-column

SSIS derived Column (DateKey)


I am trying to create a derived column that will convert the date into a date keys, apparently, I got the expression right but when I run the package and go to my destination table I don't see my derived column created. I am not sure what could be the error, please help! enter image description here


Solution

  • The Issue

    You create a derived column, but you didn't maped it to a destination column (it doesn't create a column automatically in the OLEDB Destination)

    enter image description here

    So you have to create a new column in the destination table, and Map the derived column to it like shown in the image above.