You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/synapse-analytics/sql-data-warehouse/quickstart-bulk-load-copy-tsql-examples.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,9 @@ WITH (
38
38
,ROWTERMINATOR='0x0A'--0x0A specifies to use the Line Feed character (Unix based systems)
39
39
)
40
40
```
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).
41
44
42
45
## B. Shared Access Signatures (SAS) with CRLF as the row terminator
43
46
```sql
@@ -54,7 +57,7 @@ WITH (
54
57
55
58
> [!IMPORTANT]
56
59
>
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
0 commit comments