Skip to content

Commit bb24196

Browse files
committed
Fix AzurePostgreSqlSink
1 parent ea38617 commit bb24196

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: jianleishen
77
ms.subservice: data-movement
88
ms.topic: conceptual
99
ms.custom: synapse
10-
ms.date: 04/08/2025
10+
ms.date: 04/29/2025
1111
---
1212

1313
# Copy and transform data in Azure Database for PostgreSQL using Azure Data Factory or Synapse Analytics
@@ -380,7 +380,7 @@ To copy data to Azure Database for PostgreSQL, the following properties are supp
380380

381381
| Property | Description | Required |
382382
|:--- |:--- |:--- |
383-
| type | The type property of the copy activity sink must be set to **AzurePostgreSQLSink**. | Yes |
383+
| type | The type property of the copy activity sink must be set to **AzurePostgreSqlSink**. | Yes |
384384
| preCopyScript | Specify a SQL query for the copy activity to execute before you write data into Azure Database for PostgreSQL in each run. You can use this property to clean up the preloaded data. | No |
385385
| writeMethod | The method used to write data into Azure Database for PostgreSQL.<br>Allowed values are: **CopyCommand** (default, which is more performant), **BulkInsert**. | No |
386386
| writeBatchSize | The number of rows loaded into Azure Database for PostgreSQL per batch.<br>Allowed value is an integer that represents the number of rows. | No (default is 1,000,000) |
@@ -410,7 +410,7 @@ To copy data to Azure Database for PostgreSQL, the following properties are supp
410410
"type": "<source type>"
411411
},
412412
"sink": {
413-
"type": "AzurePostgreSQLSink",
413+
"type": "AzurePostgreSqlSink",
414414
"preCopyScript": "<custom SQL script>",
415415
"writeMethod": "CopyCommand",
416416
"writeBatchSize": 1000000
@@ -537,7 +537,7 @@ IncomingStream sink(allowSchemaDrift: true,
537537
keys:['keyColumn'],
538538
format: 'table',
539539
skipDuplicateMapInputs: true,
540-
skipDuplicateMapOutputs: true) ~> AzurePostgreSQLSink
540+
skipDuplicateMapOutputs: true) ~> AzurePostgreSqlSink
541541
```
542542

543543
## Lookup activity properties

0 commit comments

Comments
 (0)