Skip to content

Commit ab63c0e

Browse files
committed
Acrolinx
1 parent 8ccd761 commit ab63c0e

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/data-share/share-your-data.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.date: 10/26/2022
99
---
1010
# Tutorial: Share data using Azure Data Share
1111

12-
In this tutorial, you will learn how to set up a new Azure Data Share and start sharing your data with customers and partners outside of your Azure organization.
12+
In this tutorial, you'll learn how to set up a new Azure Data Share and start sharing your data with customers and partners outside of your Azure organization.
1313

1414
In this tutorial, you'll learn how to:
1515

@@ -23,7 +23,7 @@ In this tutorial, you'll learn how to:
2323

2424
* Azure Subscription: If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/) before you begin.
2525
* Your recipient's Azure e-mail address (using their e-mail alias won't work).
26-
* If the source Azure data store is in a different Azure subscription than the one you will use to create Data Share resource, register the [Microsoft.DataShare resource provider](concepts-roles-permissions.md#resource-provider-registration) in the subscription where the Azure data store is located.
26+
* If the source Azure data store is in a different Azure subscription than the one you'll use to create Data Share resource, register the [Microsoft.DataShare resource provider](concepts-roles-permissions.md#resource-provider-registration) in the subscription where the Azure data store is located.
2727

2828
### Share from a storage account
2929

@@ -43,12 +43,12 @@ Below is the list of prerequisites for sharing data from SQL source.
4343
* SQL Server Firewall access. This can be done through the following steps:
4444
1. In Azure portal, navigate to SQL server. Select *Firewalls and virtual networks* from left navigation.
4545
1. Select **Yes** for *Allow Azure services and resources to access this server*.
46-
1. Select **+Add client IP**. Client IP address is subject to change. This process might need to be repeated the next time you are sharing SQL data from Azure portal. You can also add an IP range.
46+
1. Select **+Add client IP**. Client IP address is subject to change. This process might need to be repeated the next time you're sharing SQL data from Azure portal. You can also add an IP range.
4747
1. Select **Save**.
4848

4949
#### Prerequisites for sharing from Azure Synapse Analytics (workspace) SQL pool
5050

51-
* * An Azure Synapse Analytics (workspace) dedicated SQL pool with tables that you want to share. Sharing of view is not currently supported. Sharing from serverless SQL pool is not currently supported.
51+
* * An Azure Synapse Analytics (workspace) dedicated SQL pool with tables that you want to share. Sharing of view isn't currently supported. Sharing from serverless SQL pool isn't currently supported.
5252
* Permission to write to the SQL pool in Synapse workspace, which is present in *Microsoft.Synapse/workspaces/sqlPools/write*. This permission exists in the **Contributor** role.
5353
* Permission for the Data Share resource's managed identity to access Synapse workspace SQL pool. This can be done through the following steps:
5454
1. In Azure portal, navigate to Synapse workspace. Select SQL Active Directory admin from left navigation and set yourself as the **Azure Active Directory admin**.
@@ -59,12 +59,12 @@ Below is the list of prerequisites for sharing data from SQL source.
5959
create user "<share_acct_name>" from external provider;
6060
exec sp_addrolemember db_datareader, "<share_acct_name>";
6161
```
62-
The *<share_acc_name>* is the name of your Data Share resource. If you have not created a Data Share resource as yet, you can come back to this pre-requisite later.
62+
The *<share_acc_name>* is the name of your Data Share resource. If you haven't created a Data Share resource as yet, you can come back to this pre-requisite later.
6363
6464
* Synapse workspace Firewall access. This can be done through the following steps:
6565
1. In Azure portal, navigate to Synapse workspace. Select *Firewalls* from left navigation.
6666
1. Select **ON** for *Allow Azure services and resources to access this workspace*.
67-
1. Select **+Add client IP**. Client IP address is subject to change. This process might need to be repeated the next time you are sharing SQL data from Azure portal. You can also add an IP range.
67+
1. Select **+Add client IP**. Client IP address is subject to change. This process might need to be repeated the next time you're sharing SQL data from Azure portal. You can also add an IP range.
6868
1. Select **Save**.
6969

7070

@@ -98,7 +98,7 @@ Create an Azure Data Share resource in an Azure resource group.
9898
| Name | *datashareaccount* | Specify a name for your data share account. |
9999
| | |
100100

101-
1. Select **Review + create**, then **Create** to provision your data share account. Provisioning a new data share account typically takes about 2 minutes or less.
101+
1. Select **Review + create**, then **Create** to create your data share account. Creating a new data share account typically takes about 2 minutes or less.
102102

103103
1. When the deployment is complete, select **Go to resource**.
104104

@@ -208,7 +208,7 @@ Use these commands to create the resource:
208208

209209
:::image type="content" source="./media/datasets.png" alt-text="Screenshot of the datasets page in share creation, the add datasets button is highlighted.":::
210210

211-
1. Select the dataset type that you would like to add. You will see a different list of dataset types depending on the share type (snapshot or in-place) you have selected in the previous step. If sharing from an Azure SQL Database or Azure Synapse Analytics (formerly Azure SQL DW), you will be prompted for authentication method to list tables. Select AAD authentication, and check the checkbox **Allow Data Share to run the above 'create user' script on my behalf**.
211+
1. Select the dataset type that you would like to add. You'll see a different list of dataset types depending on the share type (snapshot or in-place) you've selected in the previous step. If sharing from an Azure SQL Database or Azure Synapse Analytics (formerly Azure SQL DW), you'll be prompted for authentication method to list tables. Select Azure Active Directory authentication, and check the checkbox **Allow Data Share to run the above 'create user' script on my behalf**.
212212
213213
:::image type="content" source="./media/add-datasets-updated.png" alt-text="Screenshot showing the available dataset types.":::
214214
@@ -264,7 +264,7 @@ Use these commands to create the resource:
264264
265265
### [PowerShell](#tab/powershell)
266266
267-
1. If you do not already have data you would like to share, you can follow these steps to create a storage account. If you already have storage, you may skip to step 2.
267+
1. If you don't already have data you would like to share, you can follow these steps to create a storage account. If you already have storage, you may skip to step 2.
268268

269269
1. Run the [New-AzStorageAccount](/powershell/module/az.storage/new-azstorageaccount) command to create an Azure Storage account:
270270

@@ -282,7 +282,7 @@ Use these commands to create the resource:
282282
New-AzStorageContainer -Name $containerName -Context $ctx -Permission blob
283283
```
284284

285-
1. Run the [Set-AzStorageBlobContent](/powershell/module/az.storage/new-azstoragecontainer) command to upload a file. The follow example uploads _textfile.csv_ from the _D:\testFiles_ folder on local memory, to the container you created.
285+
1. Run the [Set-AzStorageBlobContent](/powershell/module/az.storage/new-azstoragecontainer) command to upload a file. The following example uploads _textfile.csv_ from the _D:\testFiles_ folder on local memory, to the container you created.
286286

287287
```azurepowershell
288288
Set-AzStorageBlobContent -File "D:\testFiles\textfile.csv" -Container $containerName -Blob "textfile.csv" -Context $ctx

0 commit comments

Comments
 (0)