Skip to content

Instantly share code, notes, and snippets.

@cloudolaf
Last active June 26, 2017 23:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cloudolaf/f8877f6b20d8bcf7c5aa5a89468a1402 to your computer and use it in GitHub Desktop.
Save cloudolaf/f8877f6b20d8bcf7c5aa5a89468a1402 to your computer and use it in GitHub Desktop.
ADF demo - AzureSqlTableLocation1
{
"$schema": "http://datafactories.schema.management.azure.com/schemas/2015-09-01/Microsoft.DataFactory.Table.json",
"name": "AzureSqlTableLocation1",
"properties": {
"type": "AzureSqlTable",
"linkedServiceName": "AzureSqlLinkedService1",
"structure": [
{
"name": "CustomerID",
"type": "Int32"
},
{
"name": "Title",
"type": "String"
},
{
"name": "FirstName",
"type": "String"
},
{
"name": "MiddleName",
"type": "String"
},
{
"name": "LastName",
"type": "String"
}
],
"typeProperties": {
"tableName": "SalesLT.Customer"
},
"availability": {
"frequency": "Minute",
"interval": 15
},
"external": true,
"policy": {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment