Skip to content

Commit 59a0517

Browse files
committed
edit pass: connector-azure-database-for-postgresql
1 parent 3465534 commit 59a0517

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

articles/data-factory/connector-azure-database-for-postgresql.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This Azure Database for PostgreSQL connector is supported for the following acti
2929
- [Copy activity](copy-activity-overview.md) with a [supported source/sink matrix](copy-activity-overview.md)
3030
- [Lookup activity](control-flow-lookup-activity.md)
3131

32-
You can copy data from Azure Database for PostgreSQL to any supported sink data store. Or, you can copy data from any supported source data store to Azure Database for PostgreSQL. For a list of data stores that are supported as sources and sinks by the copy activity, see the [Supported data stores](copy-activity-overview.md#supported-data-stores-and-formats) table.
32+
You can copy data from Azure Database for PostgreSQL to any supported sink data store. Or, you can copy data from any supported source data store to Azure Database for PostgreSQL. For a list of data stores that the copy activity supports as sources and sinks, see the [Supported data stores](copy-activity-overview.md#supported-data-stores-and-formats) table.
3333

3434
Azure Data Factory provides a built-in driver to enable connectivity. Therefore, you don't need to manually install any driver to use this connector.
3535

@@ -73,7 +73,9 @@ A typical connection string is `Server=<server>.postgres.database.azure.com;Data
7373
}
7474
```
7575

76-
**Example: store password in Azure Key Vault**:
76+
**Example**:
77+
78+
***Store password in Azure Key Vault***
7779

7880
```json
7981
{
@@ -100,7 +102,7 @@ A typical connection string is `Server=<server>.postgres.database.azure.com;Data
100102

101103
## Dataset properties
102104

103-
For a full list of sections and properties available for defining datasets, see [Datasets in Azure Data Factory](concepts-datasets-linked-services.md). This section provides a list of properties that are supported by Azure Database for PostgreSQL dataset.
105+
For a full list of sections and properties available for defining datasets, see [Datasets in Azure Data Factory](concepts-datasets-linked-services.md). This section provides a list of properties that Azure Database for PostgreSQL supports in datasets.
104106

105107
To copy data from Azure Database for PostgreSQL, set the type property of the dataset to **AzurePostgreSqlTable**. The following properties are supported:
106108

@@ -109,7 +111,7 @@ To copy data from Azure Database for PostgreSQL, set the type property of the da
109111
| type | The type property of the dataset must be set to **AzurePostgreSqlTable** | Yes |
110112
| tableName | Name of the table | No (if "query" in activity source is specified) |
111113

112-
**Example**
114+
**Example**:
113115

114116
```json
115117
{
@@ -127,7 +129,7 @@ To copy data from Azure Database for PostgreSQL, set the type property of the da
127129

128130
## Copy activity properties
129131

130-
For a full list of sections and properties available for defining activities, see [Pipelines and activities in Azure Data Factory](concepts-pipelines-activities.md). This section provides a list of properties supported by Azure Database for PostgreSQL source.
132+
For a full list of sections and properties available for defining activities, see [Pipelines and activities in Azure Data Factory](concepts-pipelines-activities.md). This section provides a list of properties supported by an Azure Database for PostgreSQL source.
131133

132134
### Azure Database for PostgreSql as source
133135

@@ -138,7 +140,7 @@ To copy data from Azure Database for PostgreSQL, set the source type in the copy
138140
| type | The type property of the copy activity source must be set to **AzurePostgreSqlSource** | Yes |
139141
| query | Use the custom SQL query to read data. For example: `"SELECT * FROM MyTable"` | No (if the tableName property in the dataset is specified) |
140142

141-
**Example:**
143+
**Example**:
142144

143145
```json
144146
"activities":[
@@ -181,7 +183,7 @@ To copy data to Azure Database for PostgreSQL, the following properties are supp
181183
| writeBatchSize | Inserts data into the Azure Database for PostgreSQL table when the buffer size reaches writeBatchSize.<br>Allowed value is an integer that represents the number of rows. | No (default is 10,000) |
182184
| writeBatchTimeout | Wait time for the batch insert operation to complete before it times out.<br>Allowed values are Timespan strings. An example is 00:30:00 (30 minutes). | No (default is 00:00:30) |
183185

184-
**Example:**
186+
**Example**:
185187

186188
```json
187189
"activities":[

0 commit comments

Comments
 (0)