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
+11-10Lines changed: 11 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -653,7 +653,7 @@ Azure Data Lake Storage (ADLS) Gen2 offers better performance than Azure Blob St
653
653
Wildcards can be included in the path where
654
654
655
655
- Wildcard path name matching is case-sensitive
656
-
- Wildcard can be escaped using the backslash character (\\)
656
+
- Wildcard can be escaped using the backslash character (`\`)
657
657
658
658
> [!NOTE]
659
659
> For best performance, avoid specifying wildcards that would expand over a larger number of files. If possible, list multiple file locations instead of specifying wildcards.
@@ -680,21 +680,22 @@ To access files on Azure Data Lake Storage (ADLS) Gen2 and Azure Blob Storage lo
680
680
681
681
#### *CREDENTIAL (IDENTITY = '', SECRET = '')*
682
682
683
-
*CREDENTIAL* specifies the authentication mechanism to access the external storage account.
683
+
`CREDENTIAL` specifies the authentication mechanism to access the external storage account.
684
684
685
685
In Fabric Data Warehouse:
686
-
- For private storage accounts, the only supported authentication mechanisms are Shared Access Signature (SAS) and Storage Account Key (SAK).
687
-
- For public storage accounts, Microsoft Entra ID authentication is the only supported authentication method. When using a public storage account, CREDENTIAL does not need to be specified. By default the executing user's Entra ID is used.
686
+
-`COPY INTO` is not supported where public access is disabled.
687
+
- For public storage accounts, the supported authentication mechanisms are Microsoft Entra ID, Shared Access Signature (SAS), or Storage Account Key (SAK).
688
+
- For public storage accounts behind a firewall, Microsoft Entra ID authentication is the only supported authentication method. `COPY INTO` using OneLake as source only supports EntraID authentication.
688
689
689
-
The user's EntraID authentication is default. No credential needs to be specified. COPY INTO using OneLake as source only supports EntraID authentication.
690
+
The user's EntraID authentication is default. No credential needs to be specified.
690
691
691
692
- Authenticating with Shared Access Signature (SAS)
692
-
-*IDENTITY: A constant with a value of 'Shared Access Signature'*
693
-
-*SECRET: The*[*shared access signature*](/azure/storage/common/storage-sas-overview)*provides delegated access to resources in your storage account.*
694
-
- Minimum permissions required: READ and LIST
693
+
-`IDENTITY`: A constant with a value of 'Shared Access Signature'.
694
+
-`SECRET`: The[shared access signature](/azure/storage/common/storage-sas-overview) provides delegated access to resources in your storage account.
695
+
- Minimum permissions required: READ and LIST.
695
696
- Authenticating with Storage Account Key
696
-
-*IDENTITY: A constant with a value of 'Storage Account Key'*
697
-
-*SECRET: Storage account key*
697
+
-`IDENTITY`: A constant with a value of 'Storage Account Key'.
0 commit comments