I am using SSIS to transform my data. My file_name is test_heathcare.csv. How can I bring it to my flat file destination as new derived column being filename as test_healthcare20190712.txt?
If anyone know please help me .
I am using SSIS to transform my data. My file_name is test_heathcare.csv. How can I bring it to my flat file destination as new derived column being filename as test_healthcare20190712.txt?
If anyone know please help me .
You can use expressions to achieve that:
From tge expressions window select the ConnectionString
property and use a similar expression:
REPLACE(@[User::FilePath],".csv","20190712.txt")
Additional Information