Skip to content

Commit 77cdc5c

Browse files
authored
Update bulk load important note
1 parent 45b49ce commit 77cdc5c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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)