Hi,
I'm trying to read data correctly from Dynamics CRM through the Azure Synapse Link for Dataverse with the inline "Common Data Model" connector in Azure Data Factory Data Flows. I'm able to connect to the source using the Model.json and selecting the correct entity.
But the projection for some of the datetime columns are wrong. Specifically, there are column named “SinkCreatedOn” and “SinkModifiedOn” where it’s not able to detect the correct format.
In the source files in the cdm folder in the storage account the correct value is: “3/2/2022 12:19:12 PM” but the data preview shows: “2022-03-02 12:19:03.000”, missing the AM /PM.
I have tried to use different formats in the schema options for the projection, but none of them matches.
I have also tried to add custom timeformats in the script file. but still unsuccessful.
timestampFormats: ['MM/dd/yyyy hh:mm:ss a','M/d/yyyy hh:mm:ss a']) ~> source1
How can I configure my ADF Data Flow with the CDM Inline connector to detect the datetime format correctly for the value: “3/2/2022 12:19:12 PM”
Thanks!