DP-900 Describe an analytics workload on Azure • Set 15
DP-900 Describe an analytics workload on Azure Practice Test 15 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. You have created this Azure Data Factory pipeline. When you run it, the copy activity fails with a connectivity error. What is the most likely missing component?
Refer to the exhibit.
```json
{
"name": "CopyFromOnPrem",
"properties": {
"activities": [
{
"name": "CopyData",
"type": "Copy",
"inputs": [
{
"referenceName": "OnPremSqlServerDataset",
"type": "DatasetReference"
}
],
"outputs": [
{
"referenceName": "AzureSqlDatabaseDataset",
"type": "DatasetReference"
}
],
"typeProperties": {
"source": {
"type": "SqlSource",
"sqlReaderQuery": "SELECT * FROM Sales.Orders WHERE OrderDate > '2025-01-01'"
},
"sink": {
"type": "SqlSink",
"writeBatchSize": 10000
}
}
}
],
"integrationRuntime": {
"referenceName": "SelfHostedIR",
"type": "IntegrationRuntimeReference"
}
}
}
```