Forum Discussion
Data Preparation in SSIS
Hi,
I am having an issue regards the dataset I am receiving from our internal program that it cannot be changed or configured. So the issue is: I am receiving CSV files with Date field as ``dd.mm.yyyy`` and I would like to transform it via SSIS procedures as ``yyyy/mm/dd``. Anyone can help out? Thanks in advance.
Regards,
Matas
Hi,
I did managed achieve this using Derived Column's function "REPLACE(Column, ".", "-")" and save it into db.
Thanks everyone for the suggestions, appreciate it!
Regards,
Matas
3 Replies
- lbendlinSuper User
Write your own function.
SSIS – Convert various String date formats to DateTime with the Script Task – Jorg Klein's Blog
- v-luwang-msftCommunity Support
HI Matas ,
Pls refer the following article and check if it is helpful .
https://zappysys.com/blog/ssis-yyyymmdd-date-format-using-ssis-expression/
Bsst Regards
Lucien
- MatasAdvocate II
Hi,
I did managed achieve this using Derived Column's function "REPLACE(Column, ".", "-")" and save it into db.
Thanks everyone for the suggestions, appreciate it!
Regards,
Matas