DP-203 Develop data processing • Set 4
DP-203 Develop data processing Practice Test 4 — 15 questions with explanations. Free, no signup.
You are reviewing a Mapping Data Flow in Azure Data Factory that copies data from a CSV file to an Azure Synapse table. The data flow uses 'allowSchemaDrift: true' and 'validateSchema: false'. After running the pipeline, you notice that the target table does not have the expected columns. The CSV file sometimes has extra columns. What is the most likely reason?
Refer to the exhibit.
{
"type": "MappingDataFlow",
"typeProperties": {
"sources": [
{
"dataset": {
"referenceName": "DelimitedTextSource",
"type": "DatasetReference"
},
"script": "source(\n output() as (\n col1 string,\n col2 string\n ),\n allowSchemaDrift: true,\n validateSchema: false\n) ~> Source1"
}
],
"sinks": [
{
"dataset": {
"referenceName": "AzureSynapseTableSink",
"type": "DatasetReference"
},
"script": "Source1 sink(\n input() as (\n col1 string,\n col2 string\n ),\n allowSchemaDrift: true,\n validateSchema: false\n) ~> Sink1"
}
]
}
}