Skip to content

Commit 78b7460

Browse files
authored
Merge pull request #107436 from linda33wj/master
Update ADF copy connector content
2 parents 6da0725 + e71407b commit 78b7460

5 files changed

+10
-8
lines changed

articles/data-factory/connector-azure-data-lake-store.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: data-factory
1010
ms.workload: data-services
1111
ms.topic: conceptual
1212
ms.custom: seo-lt-2019
13-
ms.date: 12/12/2019
13+
ms.date: 03/12/2020
1414
---
1515

1616
# Copy data to or from Azure Data Lake Storage Gen1 using Azure Data Factory
@@ -256,6 +256,7 @@ The following properties are supported for Azure Data Lake Store Gen1 under `sto
256256
| ------------------------ | ------------------------------------------------------------ | -------- |
257257
| type | The type property under `storeSettings` must be set to **AzureDataLakeStoreWriteSettings**. | Yes |
258258
| copyBehavior | Defines the copy behavior when the source is files from a file-based data store.<br/><br/>Allowed values are:<br/><b>- PreserveHierarchy (default)</b>: Preserves the file hierarchy in the target folder. The relative path of the source file to the source folder is identical to the relative path of the target file to the target folder.<br/><b>- FlattenHierarchy</b>: All files from the source folder are in the first level of the target folder. The target files have autogenerated names. <br/><b>- MergeFiles</b>: Merges all files from the source folder to one file. If the file name is specified, the merged file name is the specified name. Otherwise, it's an autogenerated file name. | No |
259+
| expiryDateTime | Specifies the expiry time of the written files. The time is applied to the UTC time in the format of "2020-03-01T08:00:00Z". By default it is NULL, which means the written files are never expired. | No |
259260
| maxConcurrentConnections | The number of connections to connect to the data store concurrently. Specify only when you want to limit the concurrent connection to the data store. | No |
260261

261262
**Example:**

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: data-factory
1010
ms.workload: data-services
1111
ms.topic: conceptual
1212
ms.custom: seo-lt-2019
13-
ms.date: 12/12/2019
13+
ms.date: 03/12/2020
1414
---
1515

1616
# Copy and transform data in Azure Synapse Analytics (formerly Azure SQL Data Warehouse) by using Azure Data Factory
@@ -256,6 +256,7 @@ To copy data from Azure Synapse Analytics, set the **type** property in the Copy
256256
| sqlReaderQuery | Use the custom SQL query to read data. Example: `select * from MyTable`. | No |
257257
| sqlReaderStoredProcedureName | The name of the stored procedure that reads data from the source table. The last SQL statement must be a SELECT statement in the stored procedure. | No |
258258
| storedProcedureParameters | Parameters for the stored procedure.<br/>Allowed values are name or value pairs. Names and casing of parameters must match the names and casing of the stored procedure parameters. | No |
259+
| isolationLevel | Specifies the transaction locking behavior for the SQL source. The allowed values are: **ReadCommitted** (default), **ReadUncommitted**, **RepeatableRead**, **Serializable**, **Snapshot**. Refer to [this doc](https://docs.microsoft.com/dotnet/api/system.data.isolationlevel) for more details. | No |
259260

260261
**Example: using SQL query**
261262

articles/data-factory/connector-azure-sql-database-managed-instance.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ author: linda33wj
1010
manager: shwang
1111
ms.reviewer: douglasl
1212
ms.custom: seo-lt-2019
13-
ms.date: 09/09/2019
13+
ms.date: 03/12/2020
1414
---
1515

1616
# Copy data to and from Azure SQL Database Managed Instance by using Azure Data Factory
@@ -36,9 +36,6 @@ Specifically, this Azure SQL Database Managed Instance connector supports:
3636
>[!NOTE]
3737
>Azure SQL Database Managed Instance [Always Encrypted](https://docs.microsoft.com/sql/relational-databases/security/encryption/always-encrypted-database-engine?view=azuresqldb-mi-current) isn't supported by this connector now. To work around, you can use a [generic ODBC connector](connector-odbc.md) and a SQL Server ODBC driver via a self-hosted integration runtime. Follow [this guidance](https://docs.microsoft.com/sql/connect/odbc/using-always-encrypted-with-the-odbc-driver?view=azuresqldb-mi-current) with ODBC driver download and connection string configurations.
3838
39-
>[!NOTE]
40-
>Service principal and managed identity authentications currently aren't supported by this connector. To work around, choose an Azure SQL Database connector and manually specify the server of your managed instance.
41-
4239
## Prerequisites
4340

4441
To access the Azure SQL Database Managed Instance [public endpoint](../sql-database/sql-database-managed-instance-public-endpoint-securely.md), you can use an Azure Data Factory managed Azure integration runtime. Make sure that you enable the public endpoint and also allow public endpoint traffic on the network security group so that Azure Data Factory can connect to your database. For more information, see [this guidance](../sql-database/sql-database-managed-instance-public-endpoint-configure.md).
@@ -266,6 +263,7 @@ To copy data from Azure SQL Database Managed Instance, the following properties
266263
| sqlReaderQuery |This property uses the custom SQL query to read data. An example is `select * from MyTable`. |No |
267264
| sqlReaderStoredProcedureName |This property is the name of the stored procedure that reads data from the source table. The last SQL statement must be a SELECT statement in the stored procedure. |No |
268265
| storedProcedureParameters |These parameters are for the stored procedure.<br/>Allowed values are name or value pairs. The names and casing of the parameters must match the names and casing of the stored procedure parameters. |No |
266+
| isolationLevel | Specifies the transaction locking behavior for the SQL source. The allowed values are: **ReadCommitted** (default), **ReadUncommitted**, **RepeatableRead**, **Serializable**, **Snapshot**. Refer to [this doc](https://docs.microsoft.com/dotnet/api/system.data.isolationlevel) for more details. | No |
269267

270268
**Note the following points:**
271269

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: data-factory
1010
ms.workload: data-services
1111
ms.topic: conceptual
1212
ms.custom: seo-lt-2019
13-
ms.date: 01/28/2020
13+
ms.date: 03/12/2020
1414
---
1515

1616
# Copy and transform data in Azure SQL Database by using Azure Data Factory
@@ -256,6 +256,7 @@ To copy data from Azure SQL Database, the following properties are supported in
256256
| sqlReaderQuery | This property uses the custom SQL query to read data. An example is `select * from MyTable`. | No |
257257
| sqlReaderStoredProcedureName | The name of the stored procedure that reads data from the source table. The last SQL statement must be a SELECT statement in the stored procedure. | No |
258258
| storedProcedureParameters | Parameters for the stored procedure.<br/>Allowed values are name or value pairs. The names and casing of parameters must match the names and casing of the stored procedure parameters. | No |
259+
| isolationLevel | Specifies the transaction locking behavior for the SQL source. The allowed values are: **ReadCommitted** (default), **ReadUncommitted**, **RepeatableRead**, **Serializable**, **Snapshot**. Refer to [this doc](https://docs.microsoft.com/dotnet/api/system.data.isolationlevel) for more details. | No |
259260

260261
**Points to note:**
261262

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.service: data-factory
1111
ms.workload: data-services
1212
ms.topic: conceptual
1313
ms.custom: seo-lt-2019
14-
ms.date: 10/24/2019
14+
ms.date: 03/12/2020
1515
---
1616

1717
# Copy data to and from SQL Server by using Azure Data Factory
@@ -184,6 +184,7 @@ To copy data from SQL Server, set the source type in the copy activity to **SqlS
184184
| sqlReaderQuery |Use the custom SQL query to read data. An example is `select * from MyTable`. |No |
185185
| sqlReaderStoredProcedureName |This property is the name of the stored procedure that reads data from the source table. The last SQL statement must be a SELECT statement in the stored procedure. |No |
186186
| storedProcedureParameters |These parameters are for the stored procedure.<br/>Allowed values are name or value pairs. The names and casing of parameters must match the names and casing of the stored procedure parameters. |No |
187+
| isolationLevel | Specifies the transaction locking behavior for the SQL source. The allowed values are: **ReadCommitted** (default), **ReadUncommitted**, **RepeatableRead**, **Serializable**, **Snapshot**. Refer to [this doc](https://docs.microsoft.com/dotnet/api/system.data.isolationlevel) for more details. | No |
187188

188189
**Points to note:**
189190

0 commit comments

Comments
 (0)