Skip to content

Commit 4451811

Browse files
Minor corrections
1 parent 77fd319 commit 4451811

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/synapse-analytics/sql/tutorial-load-data-using-entra-id.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To enable access to data on Azure Data Lake Storage (ADLS) Gen2 accounts, you ne
3030
1. Select **Data storage** -> **Containers**, and navigate to the folder where the source data the external table needs access to is.
3131
1. Select **Access control (IAM)**.
3232
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**.
3434
1. In the **Add role assignment** page, select **+ Select members**. The **Select members** pane opens in the right-hand corner.
3535
1. Type the name of the desired Microsoft Entra ID account. When displayed, pick your desired account and chose **Select**.
3636
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
4242

4343
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.
4444

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:
4646

4747
```sql
4848
COPY INTO <TableName>
@@ -159,4 +159,4 @@ For more information about `CREATE EXTERNAL TABLE`, see [CREATE EXTERNAL TABLE (
159159
160160
- [Tutorial: Load external data using a managed identity](tutorial-external-tables-using-managed-identity.md)
161161
- [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

Comments
 (0)