Skip to content

Commit a51b676

Browse files
Merge pull request #39146 from jasonmerino/patch-1
Grammar fixes for better readability.
2 parents 61da884 + 7192a17 commit a51b676

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/data-factory/copy-activity-schema-and-type-mapping.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.author: jingwang
1818
---
1919
# Schema mapping in copy activity
2020

21-
This article describes how Azure Data Factory copy activity does schema mapping and data type mapping from source data to sink data when execute the data copy.
21+
This article describes how the Azure Data Factory copy activity does schema mapping and data type mapping from source data to sink data when executing the data copy.
2222

2323
## Schema mapping
2424

@@ -89,7 +89,7 @@ The following properties are supported under `translator` -> `mappings` -> objec
8989
| -------- | ------------------------------------------------------------ | -------- |
9090
| name | Name of the source or sink column. | Yes |
9191
| ordinal | Column index. Start with 1. <br>Apply and required when using delimited text without header line. | No |
92-
| path | JSON path expression for each field to extract or map. Apply for hierarchical data e.g. MongoDB/REST.<br>For fields under root object, JSON path starts with root $; for fields inside the array chosen by `collectionReference` property, JSON path starts from the array element. | No |
92+
| path | JSON path expression for each field to extract or map. Apply for hierarchical data e.g. MongoDB/REST.<br>For fields under the root object, the JSON path starts with root $; for fields inside the array chosen by `collectionReference` property, JSON path starts from the array element. | No |
9393
| type | Data Factory interim data type of the source or sink column. | No |
9494
| culture | Culture of the source or sink column. <br>Apply when type is `Datetime` or `Datetimeoffset`. The default is `en-us`. | No |
9595
| format | Format string to be used when type is `Datetime` or `Datetimeoffset`. Refer to [Custom Date and Time Format Strings](https://docs.microsoft.com/dotnet/standard/base-types/custom-date-and-time-format-strings) on how to format datetime. | No |
@@ -102,14 +102,14 @@ The following properties are supported under `translator` -> `mappings` in addit
102102

103103
### Alternative column mapping
104104

105-
You can specify copy activity -> `translator` -> `columnMappings` to map between tabular-shaped data . In this case, "structure" section is required for both input and output datasets. Column mapping supports **mapping all or subset of columns in the source dataset "structure" to all columns in the sink dataset "structure"**. The following are error conditions that result in an exception:
105+
You can specify copy activity -> `translator` -> `columnMappings` to map between tabular-shaped data . In this case, the "structure" section is required for both input and output datasets. Column mapping supports **mapping all or subset of columns in the source dataset "structure" to all columns in the sink dataset "structure"**. The following are error conditions that result in an exception:
106106

107107
* Source data store query result does not have a column name that is specified in the input dataset "structure" section.
108108
* Sink data store (if with pre-defined schema) does not have a column name that is specified in the output dataset "structure" section.
109109
* Either fewer columns or more columns in the "structure" of sink dataset than specified in the mapping.
110110
* Duplicate mapping.
111111

112-
In the following example, the input dataset has a structure and it points to a table in an on-premises Oracle database.
112+
In the following example, the input dataset has a structure, and it points to a table in an on-premises Oracle database.
113113

114114
```json
115115
{

0 commit comments

Comments
 (0)