Try to explicitly set the type for each column like this :
{"type": "Copy",
"inputs": [
{
"name": "sourceDataset"
}
],
"outputs": [
{
"name": "sinkDataset"
}
],
"typeProperties": {
"source": {
"type": "SalesforceSource",
"query": "SELECT Id, Name, CreatedDate FROM TableName"
},
"sink": {
"type": "AzureBlobStorage",
"format": {
"type": "TextFormat",
"columnDelimiter": ","
},
"writeBatchSize": 10000
},
"translator": {
"type": "TabularTranslator",
"mappings": [
{
"source": {
"name": "CreatedDate",
"type": "DateTime"
},
"sink": {
"name": "CreatedDate",
"type": "DateTime"
}
}
]
}
}
```}