Skip to content

Commit 20373fe

Browse files
committed
Update SQL connectors
1 parent 275ef80 commit 20373fe

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

articles/data-factory/connector-azure-sql-data-warehouse.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.workload: data-services
1212
ms.tgt_pltfrm: na
1313

1414
ms.topic: conceptual
15-
ms.date: 09/09/2019
15+
ms.date: 09/16/2019
1616
ms.author: jingwang
1717

1818
---
@@ -442,6 +442,9 @@ If the requirements aren't met, Azure Data Factory checks the settings and autom
442442
443443
3. If your source is a folder, `recursive` in copy activity must be set to true.
444444
445+
>[!NOTE]
446+
>If your source is a folder, note PolyBase retrieves files from the folder and all of its subfolders, and it doesn't retrieve data from files for which the file name begins with an underline (_) or a period (.), as documented [here - LOCATION argument](https://docs.microsoft.com/sql/t-sql/statements/create-external-table-transact-sql?view=azure-sqldw-latest#arguments-2).
447+
445448
```json
446449
"activities":[
447450
{

articles/data-factory/connector-sql-server.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ To copy data from and to a SQL Server database, the following properties are sup
155155
| Property | Description | Required |
156156
|:--- |:--- |:--- |
157157
| type | The type property of the dataset must be set to **SqlServerTable**. | Yes |
158-
| tableName |This property is the name of the table or view in the SQL Server database instance that the linked service refers to. | No for source, Yes for sink |
158+
| schema | Name of the schema. |No for source, Yes for sink |
159+
| table | Name of the table/view. |No for source, Yes for sink |
160+
| tableName | Name of the table/view with schema. This property is supported for backward compatibility. For new workload, use `schema` and `table`. | No for source, Yes for sink |
159161

160162
**Example**
161163

@@ -171,7 +173,8 @@ To copy data from and to a SQL Server database, the following properties are sup
171173
},
172174
"schema": [ < physical schema, optional, retrievable during authoring > ],
173175
"typeProperties": {
174-
"tableName": "MyTable"
176+
"schema": "<schema_name>",
177+
"table": "<table_name>"
175178
}
176179
}
177180
}

0 commit comments

Comments
 (0)