Hi @rvnth ,
The below configuration in data loading activity for date column should work fine:
Alternate solution:
Set the Data type as string in data loading activity
And add an enrichment activity next to data loading activity and create a column using below expression,
ToDate((Substring(Date_Field,4 ,2 )+'/'+Substring(Date_Field,1,2 )+'/'+Substring(Date_Field,7,4 )))
This will convert it to date data type. To convert it to date and time format use ToDateTime(****)