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: docs/t-sql/statements/copy-into-transact-sql.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Use the COPY statement in Azure Synapse Analytics and Warehouse in
5
5
author: WilliamDAssafMSFT
6
6
ms.author: wiassaf
7
7
ms.reviewer: procha, mikeray, fresantos
8
-
ms.date: 07/29/2025
8
+
ms.date: 10/15/2025
9
9
ms.service: sql
10
10
ms.subservice: t-sql
11
11
ms.topic: reference
@@ -347,6 +347,10 @@ The COPY statement accepts only UTF-8 and UTF-16 valid characters for row data a
347
347
348
348
The MAXDOP query hint is not supported with COPY INTO.
349
349
350
+
To ensure reliable execution, the source files and folders must remain unchanged throughout the duration of the `COPY INTO` operation.
351
+
- Modifying, deleting, or replacing any referenced files or folders while the command is running can cause the operation to fail or result in inconsistent data ingestion.
352
+
- Before executing `COPY INTO`, verify that all source data is stable and will not be altered during the process.
353
+
350
354
## Examples
351
355
352
356
### A. Load from a public storage account
@@ -850,6 +854,10 @@ When using OneLake as the source, the user must have **Contributor** or higher p
850
854
851
855
The COPY statement accepts only UTF-8 and UTF-16 valid characters for row data and command parameters. Source files or parameters (such as `ROW TERMINATOR` or `FIELD TERMINATOR`) that use invalid characters might be interpreted incorrectly by the COPY statement and cause unexpected results such as data corruption, or other failures. Make sure your source files and parameters are UTF-8 or UTF-16 compliant before you invoke the COPY statement.
852
856
857
+
To ensure reliable execution, the source files and folders must remain unchanged throughout the duration of the COPY INTO operation.
858
+
- Modifying, deleting, or replacing any referenced files or folders while the command is running may cause the operation to fail or result in inconsistent data ingestion.
859
+
- Before executing COPY INTO, verify that all source data is stable and will not be altered during the process.
0 commit comments