Skip to content

Commit 1e483ee

Browse files
authored
Merge pull request #114497 from kevinvngo/patch-160
Update bulk load important note
2 parents 88c6b98 + 6b5e5e0 commit 1e483ee

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

articles/synapse-analytics/sql-data-warehouse/index.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ landingContent:
6666
links:
6767
- text: Fast data ingestion with the COPY statement
6868
url: quickstart-bulk-load-copy-tsql.md
69+
- text: COPY statement examples
70+
url: quickstart-bulk-load-copy-tsql-examples.md
6971
- linkListType: concept
7072
links:
7173
- text: Design data loading strategy

articles/synapse-analytics/sql-data-warehouse/quickstart-bulk-load-copy-tsql-examples.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ WITH (
3838
,ROWTERMINATOR='0x0A' --0x0A specifies to use the Line Feed character (Unix based systems)
3939
)
4040
```
41+
> [!IMPORTANT]
42+
>
43+
> - Use the hexadecimal value (0x0A) to specify the Line Feed/Newline character. Note the COPY statement will interpret the '\n' string as '\r\n' (carriage return newline).
4144
4245
## B. Shared Access Signatures (SAS) with CRLF as the row terminator
4346
```sql
@@ -54,7 +57,7 @@ WITH (
5457

5558
> [!IMPORTANT]
5659
>
57-
> - Specifying the ROWTERMINATOR as '\r\n' will be interpreted as '\r\r\n' which will result in parsing issues
60+
> - Do not specify the ROWTERMINATOR as '\r\n' which will be interpreted as '\r\r\n' and can result in parsing issues
5861
5962
## C. Managed Identity
6063

0 commit comments

Comments
 (0)