Skip to content

Commit f0b211c

Browse files
committed
Update add additional columns
1 parent 5bfaaee commit f0b211c

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

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

Lines changed: 3 additions & 3 deletions
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: 03/12/2020
13+
ms.date: 03/25/2020
1414
---
1515

1616
# Copy and transform data in Azure Synapse Analytics (formerly Azure SQL Data Warehouse) by using Azure Data Factory
@@ -439,7 +439,7 @@ If the requirements aren't met, Azure Data Factory checks the settings and autom
439439
440440
3. If your source is a folder, `recursive` in copy activity must be set to true.
441441
442-
4. `wildcardFolderPath` , `wildcardFilename`, `modifiedDateTimeStart`, and `modifiedDateTimeEnd` are not specified.
442+
4. `wildcardFolderPath` , `wildcardFilename`, `modifiedDateTimeStart`, `modifiedDateTimeEnd` and `additionalColumns` are not specified.
443443
444444
>[!NOTE]
445445
>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).
@@ -619,7 +619,7 @@ Using COPY statement supports the following configuration:
619619
620620
3. If your source is a folder, `recursive` in copy activity must be set to true.
621621
622-
4. `wildcardFolderPath` , `wildcardFilename`, `modifiedDateTimeStart`, and `modifiedDateTimeEnd` are not specified.
622+
4. `wildcardFolderPath` , `wildcardFilename`, `modifiedDateTimeStart`, `modifiedDateTimeEnd` and `additionalColumns` are not specified.
623623
624624
The following COPY statement settings are supported under `allowCopyCommand` in copy activity:
625625

articles/data-factory/copy-activity-overview.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.reviewer: douglasl
1010
ms.service: data-factory
1111
ms.workload: data-services
1212
ms.topic: conceptual
13-
ms.date: 03/24/2020
13+
ms.date: 03/25/2020
1414
ms.author: jingwang
1515

1616
---
@@ -175,10 +175,6 @@ While copying data from source to sink, in scenarios like data lake migration, y
175175

176176
See [Schema and data type mapping](copy-activity-schema-and-type-mapping.md) for information about how the Copy activity maps your source data to your sink.
177177

178-
## Fault tolerance
179-
180-
By default, the Copy activity stops copying data and returns a failure when source data rows are incompatible with sink data rows. To make the copy succeed, you can configure the Copy activity to skip and log the incompatible rows and copy only the compatible data. See [Copy activity fault tolerance](copy-activity-fault-tolerance.md) for details.
181-
182178
## Add additional columns during copy
183179

184180
In addition to copying data from source data store to sink, you can also configure to add additional data columns to copy along to sink. For example:
@@ -191,6 +187,9 @@ You can find the following configuration on copy activity source tab:
191187

192188
![Add additional columns in copy activity](./media/copy-activity-overview/copy-activity-add-additional-columns.png)
193189

190+
>[!TIP]
191+
>This feature works with the latest dataset model. If you don't see this option from the UI, try creating a new dataset.
192+
194193
To configure it programmatically, add the `additionalColumns` property in your copy activity source:
195194

196195
| Property | Description | Required |
@@ -236,6 +235,10 @@ To configure it programmatically, add the `additionalColumns` property in your c
236235
]
237236
```
238237

238+
## Fault tolerance
239+
240+
By default, the Copy activity stops copying data and returns a failure when source data rows are incompatible with sink data rows. To make the copy succeed, you can configure the Copy activity to skip and log the incompatible rows and copy only the compatible data. See [Copy activity fault tolerance](copy-activity-fault-tolerance.md) for details.
241+
239242
## Next steps
240243
See the following quickstarts, tutorials, and samples:
241244

0 commit comments

Comments
 (0)