Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion docs/t-sql/statements/copy-into-transact-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Use the COPY statement in Azure Synapse Analytics and Warehouse in
author: WilliamDAssafMSFT
ms.author: wiassaf
ms.reviewer: procha, mikeray, fresantos
ms.date: 07/29/2025
ms.date: 10/15/2025
ms.service: sql
ms.subservice: t-sql
ms.topic: reference
Expand Down Expand Up @@ -347,6 +347,10 @@ The COPY statement accepts only UTF-8 and UTF-16 valid characters for row data a

The MAXDOP query hint is not supported with COPY INTO.

To ensure reliable execution, the source files and folders must remain unchanged throughout the duration of the `COPY INTO` operation.
- 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.
- Before executing `COPY INTO`, verify that all source data is stable and will not be altered during the process.

## Examples

### A. Load from a public storage account
Expand Down Expand Up @@ -850,6 +854,10 @@ When using OneLake as the source, the user must have **Contributor** or higher p

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.

To ensure reliable execution, the source files and folders must remain unchanged throughout the duration of the COPY INTO operation.
- 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.
- Before executing COPY INTO, verify that all source data is stable and will not be altered during the process.

<a id="limitations-for-onelake-as-source-public-preview"></a>

## Limitations for OneLake as source
Expand Down