Skip to content

Commit 4eae151

Browse files
authored
Merge pull request #210488 from Clare-Zheng82/0908-Update_CSV_doc_to_add_DF_property
[New feature] – Add Data Flow source property in Delimited text format doc
2 parents 473aa2d + 290be9c commit 4eae151

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

articles/data-factory/format-delimited-text.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: data-factory
77
ms.subservice: data-movement
88
ms.custom: synapse, contperf-fy22q2
99
ms.topic: conceptual
10-
ms.date: 08/05/2022
10+
ms.date: 09/08/2022
1111
ms.author: jianleishen
1212
---
1313

@@ -168,6 +168,7 @@ The below table lists the properties supported by a delimited text source. You c
168168
| After completion | Delete or move the files after processing. File path starts from the container root | no | Delete: `true` or `false` <br> Move: `['<from>', '<to>']` | purgeFiles <br> moveFiles |
169169
| Filter by last modified | Choose to filter files based upon when they were last altered | no | Timestamp | modifiedAfter <br> modifiedBefore |
170170
| Allow no files found | If true, an error is not thrown if no files are found | no | `true` or `false` | ignoreNoFilesFound |
171+
| Maximum columns | The default value is 20480. Customize this value when the column number is over 20480 | no | Integer | maxColumns |
171172

172173
> [!NOTE]
173174
> Data flow sources support for list of files is limited to 1024 entries in your file. To include more files, use wildcards in your file list.
@@ -183,9 +184,10 @@ The associated data flow script is:
183184
```
184185
source(
185186
allowSchemaDrift: true,
186-
validateSchema: false,
187-
multiLineRow: true,
188-
wildcardPaths:['*.csv']) ~> CSVSource
187+
validateSchema: false,
188+
ignoreNoFilesFound: false,
189+
multiLineRow: true,
190+
wildcardPaths:['*.csv']) ~> CSVSource
189191
```
190192

191193
> [!NOTE]
-13.2 KB
Loading

0 commit comments

Comments
 (0)