Skip to content

Commit

Permalink
validation successful
Browse files Browse the repository at this point in the history
  • Loading branch information
spelluru committed Feb 14, 2018
1 parent bf555a6 commit c1d1459
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
19 changes: 10 additions & 9 deletions 101-data-factory-v2-blob-to-sql-copy/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,18 +163,19 @@
}
],
"typeProperties": {
"tableName": "[concat(parameters('sqlTableName')]"
}
},
"linkedServiceName": {
"referenceName": "AzureSqlDatabaseLinkedService",
"type": "LinkedServiceReference"
"tableName": "[parameters('sqlTableName')]"
},
"linkedServiceName": {
"referenceName": "[variables('azureSqlDatabaseLinkedServiceName')]",
"type": "LinkedServiceReference"
}
}
},
{
"type": "pipelines",
"name": "[variables('pipelineName')]",
"dependsOn": [
"[parameters('dataFactoryName')]",
"[variables('inputDatasetName')]",
"[variables('outputDatasetName')]"
],
Expand All @@ -185,11 +186,11 @@
"typeProperties": {
"source": {
"type": "BlobSource",
"recursive": true
"recursive": true
},
"sink": {
"type": "SqlSink",
"writeBatchSize": 10000
"type": "SqlSink",
"writeBatchSize": 10000
}
},
"name": "MyCopyActivity",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@
"inputBlobName": {
"value": "emp.txt"
},
"outputBlobFolder": {
"value": "output"
},
"outputBlobName": {
"value": "emp.txt"
"sqlTableName": {
"value": "[dbo].[emp]"
}
}
}

0 comments on commit c1d1459

Please sign in to comment.