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/tutorial-load-data-using-entra-id.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ To enable access to data on Azure Data Lake Storage (ADLS) Gen2 accounts, you ne
30
30
1. Select **Data storage** -> **Containers**, and navigate to the folder where the source data the external table needs access to is.
31
31
1. Select **Access control (IAM)**.
32
32
1. Select **Add -> Add role assignment**.
33
-
1. In the list of job function roles, select **Storage Blob Data Reader** and select **Next**.
33
+
1. In the list of job function roles, select **Storage Blob Data Reader** and select **Next**. If write permissions are needed, select **Storage Blob Data Contributor**.
34
34
1. In the **Add role assignment** page, select **+ Select members**. The **Select members** pane opens in the right-hand corner.
35
35
1. Type the name of the desired Microsoft Entra ID account. When displayed, pick your desired account and chose **Select**.
36
36
1. In the **Add role assignment** page, make sure the list of Members include your desired Microsoft Entra ID account. Once verified, select **Review + assign**.
@@ -42,7 +42,7 @@ The Microsoft Entra ID account or group is now a member of the Storage Blob Data
42
42
43
43
The `COPY INTO` T-SQL statement provides flexible, high-throughput data ingestion into your tables, and is the primary strategy to ingest data into your dedicated SQL pool tables. It allows users to ingest data from external locations without having to create any of the extra database objects that are required for external tables.
44
44
45
-
The `COPY INTO` statement uses the `CREDENTIAL` argument to specify the authentication method used to connect to the source account. However, when authenticating using Microsoft Entra ID or to a public storage account, `CREDENTIAL` doesn't need to be specified. To run the `COPY INTO` statement using a workspace managed identity for authentication, use the following T-SQL command:
45
+
The `COPY INTO` statement uses the `CREDENTIAL` argument to specify the authentication method used to connect to the source account. However, when authenticating using Microsoft Entra ID or to a public storage account, `CREDENTIAL` doesn't need to be specified. To run the `COPY INTO` statement using Entra ID authentication, use the following T-SQL command:
46
46
47
47
```sql
48
48
COPY INTO <TableName>
@@ -159,4 +159,4 @@ For more information about `CREATE EXTERNAL TABLE`, see [CREATE EXTERNAL TABLE (
159
159
160
160
- [Tutorial: Load external data using a managed identity](tutorial-external-tables-using-managed-identity.md)
161
161
- [Load Contoso retail data into dedicated SQL pools in Azure Synapse Analytics](../sql-data-warehouse/sql-data-warehouse-load-from-azure-blob-storage-with-polybase.md)
162
-
- [Use Microsoft Entra authentication for authentication with Synapse SQL](active-directory-authentication.md)
162
+
- [Use Microsoft Entra authentication for authentication with Synapse SQL](active-directory-authentication.md)
0 commit comments