I am new to azure data factory and need to implement below logic using Azure Data Factory where we are transferring a csv file from source to destination with some transformation in the file.
Input file contains below data :
111|101|2019-02-04 21:04:57
222|202|2019-02-04 21:33:54
333|202|2019-02-04 20:23:55
Expected Output :
H|TestFile|currentDateTime------------ Need to add this header record. H and TestFile would be static
111|101|2019-02-04 21:04:57
222|202|2019-02-04 21:33:54
333|202|2019-02-04 20:23:55
T|03-------------------------------------- T is static value. Need to add total number of records here.
Can someone please help with this