Skip to content

Commit 5a4cf4b

Browse files
committed
Address review feedback and tweak few minor connector properties
1 parent b225f32 commit 5a4cf4b

7 files changed

+13
-11
lines changed

articles/data-factory/connector-azure-cosmos-db.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ To copy data from/to Azure Cosmos DB, set the type property of the dataset to **
108108

109109
For schema-free data stores such as Azure Cosmos DB, copy activity infers the schema in one of the following ways. Therefore, unless you want to [import/export JSON documents as-is](#importexport-json-documents), the best practice is to specify the structure of data in the **structure** section.
110110

111-
1. If you specify the structure of data by using the **structure** property in the dataset definition, the Data Factory service honors this structure as the schema. In this case, if a row does not contain a value for a column, a null value will be provided for it.
112-
2. If you do not specify the structure of data by using the **structure** property in the dataset definition, the Data Factory service infers the schema by using the first row in the data. In this case, if the first row does not contain the full schema, some columns will be missing in the result of copy operation.
111+
*. If you specify the structure of data by using the **structure** property in the dataset definition, the Data Factory service honors this structure as the schema. In this case, if a row does not contain a value for a column, a null value will be provided for it.
112+
*. If you do not specify the structure of data by using the **structure** property in the dataset definition, the Data Factory service infers the schema by using the first row in the data. In this case, if the first row does not contain the full schema, some columns will be missing in the result of copy operation.
113113

114114
## Copy activity properties
115115

articles/data-factory/connector-http.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.workload: data-services
1212
ms.tgt_pltfrm: na
1313
ms.devlang: na
1414
ms.topic: article
15-
ms.date: 02/07/2018
15+
ms.date: 05/22/2018
1616
ms.author: jingwang
1717

1818
---
@@ -55,7 +55,7 @@ The following properties are supported for HTTP linked service:
5555
|:--- |:--- |:--- |
5656
| type | The type property must be set to: **HttpServer**. | Yes |
5757
| url | Base URL to the Web Server | Yes |
58-
| enableServerCertificateValidation | Specify whether to enable server SSL certificate validation when connecting to HTTP endpoint. | No, default is true |
58+
| enableServerCertificateValidation | Specify whether to enable server SSL certificate validation when connecting to HTTP endpoint. When your HTTPS server is using self-signed certificate, set this to false. | No, default is true |
5959
| authenticationType | Specifies the authentication type. Allowed values are: **Anonymous**, **Basic**, **Digest**, **Windows**, **ClientCertificate**. <br><br> Refer to sections below this table on more properties and JSON samples for those authentication types respectively. | Yes |
6060
| connectVia | The [Integration Runtime](concepts-integration-runtime.md) to be used to connect to the data store. You can use Azure Integration Runtime or Self-hosted Integration Runtime (if your data store is located in private network). If not specified, it uses the default Azure Integration Runtime. |No |
6161

articles/data-factory/connector-netezza.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ A typical connection string is `Server=<server>;Port=<port>;Database=<database>;
5353
| Property | Description | Required |
5454
|:--- |:--- |:--- |:--- |
5555
| SecurityLevel | The level of security (SSL/TLS) that the driver uses for the connection to the data store. E.g. `SecurityLevel=preferredSecured`. Supported values are:<br/>- Only Unsecured (**onlyUnSecured**): The driver does not use SSL.<br/>- **Preferred Unsecured (preferredUnSecured) (default)**: If the server provides a choice, the driver does not use SSL. <br/>- **Preferred Secured (preferredSecured)**: If the server provides a choice, the driver uses SSL. <br/>- **Only Secured (onlySecured)**: The driver does not connect unless an SSL connection is available | No |
56-
| CaCertFile | The full path to the SSL certificate that is used by the server. E.g. `UseSystemTrustStore=<cert path>;`| Yes, if SSL is enabled |
56+
| CaCertFile | The full path to the SSL certificate that is used by the server. E.g. `CaCertFile=<cert path>;`| Yes, if SSL is enabled |
5757

5858
**Example:**
5959

articles/data-factory/connector-odata.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.workload: data-services
1212
ms.tgt_pltfrm: na
1313
ms.devlang: na
1414
ms.topic: article
15-
ms.date: 02/07/2018
15+
ms.date: 05/22/2018
1616
ms.author: jingwang
1717

1818
---
@@ -130,7 +130,7 @@ To copy data from OData, set the type property of the dataset to **ODataResource
130130
| Property | Description | Required |
131131
|:--- |:--- |:--- |
132132
| type | The type property of the dataset must be set to: **ODataResource** | Yes |
133-
| path | Path to the OData resource. | No |
133+
| path | Path to the OData resource. | Yes |
134134

135135
**Example**
136136

articles/data-factory/connector-oracle.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ Specifically, this Oracle connector supports the following versions of an Oracle
3838
- Oracle 9i R1, R2 (9.0.1, 9.2)
3939
- Oracle 8i R3 (8.1.7)
4040

41-
Note Oracle proxy server is not supported.
41+
> [!Note]
42+
> Oracle proxy server is not supported.
4243
4344
## Prerequisites
4445

articles/data-factory/v1/data-factory-http-connector.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.workload: data-services
1212
ms.tgt_pltfrm: na
1313
ms.devlang: na
1414
ms.topic: article
15-
ms.date: 01/10/2018
15+
ms.date: 05/22/2018
1616
ms.author: jingwang
1717

1818
robots: noindex
@@ -50,7 +50,7 @@ The following table provides description for JSON elements specific to HTTP link
5050
| type | The type property must be set to: `Http`. | Yes |
5151
| url | Base URL to the Web Server | Yes |
5252
| authenticationType | Specifies the authentication type. Allowed values are: **Anonymous**, **Basic**, **Digest**, **Windows**, **ClientCertificate**. <br><br> Refer to sections below this table on more properties and JSON samples for those authentication types respectively. | Yes |
53-
| enableServerCertificateValidation | Specify whether to enable server SSL certificate validation if source is HTTPS Web Server | No, default is true |
53+
| enableServerCertificateValidation | Specify whether to enable server SSL certificate validation if source is HTTPS Web Server. When your HTTPS server is using self-signed certificate, set this to false. | No, default is true |
5454
| gatewayName | Name of the Data Management Gateway to connect to an on-premises HTTP source. | Yes if copying data from an on-premises HTTP source. |
5555
| encryptedCredential | Encrypted credential to access the HTTP endpoint. Auto-generated when you configure the authentication information in copy wizard or the ClickOnce popup dialog. | No. Apply only when copying data from an on-premises HTTP server. |
5656

articles/data-factory/v1/data-factory-onprem-oracle-connector.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ This Oracle connector support two versions of drivers:
5656
- Oracle 9i R1, R2 (9.0.1, 9.2)
5757
- Oracle 8i R3 (8.1.7)
5858

59-
Note Oracle proxy server is not supported.
59+
> [!NOTE]
60+
> Oracle proxy server is not supported.
6061
6162
> [!IMPORTANT]
6263
> Currently Microsoft driver for Oracle only supports copying data from Oracle but not writing to Oracle. And note the test connection capability in Data Management Gateway Diagnostics tab does not support this driver. Alternatively, you can use the copy wizard to validate the connectivity.

0 commit comments

Comments
 (0)