Skip to content

Commit 5aee707

Browse files
committed
Editing pass II
1 parent edb290a commit 5aee707

File tree

1 file changed

+6
-6
lines changed
  • src/connections/storage/catalog/azuresqldw

1 file changed

+6
-6
lines changed

src/connections/storage/catalog/azuresqldw/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Azure's [Azure Synapse Analytics](https://azure.microsoft.com/en-us/services/syn
99

1010
## Getting Started
1111

12-
Complete the following prerequisites in Microsoft Azure before linking your Azure Synapse Analytics databases to Segment:
12+
Complete the following prerequisites in Microsoft Azure before connecting your Azure Synapse Analytics databases to Segment:
1313

14-
1. Create an [Azure subscription](https://azure.microsoft.com/en-us/free/){:target="_blank"}.
14+
1. Sign up for an [Azure subscription](https://azure.microsoft.com/en-us/free/){:target="_blank"}.
1515
2. Provision a [Dedicated SQL Pool](https://docs.microsoft.com/en-us/azure/sql-data-warehouse/create-data-warehouse-portal){:target="_blank"}.
1616

1717
## Connect your Azure database to Segment
1818

19-
To connect your Azure database to Segment once you've provisioned your dedicated SQL pool, [give Segment access to your SQL Data Warehouse](#give-segment-access-to-your-sql-data-warehouse) and [configure an Azure Synapse Analytics destination](#configure-an-azure-synapse-analytics-destination-in-segment).
19+
To connect your Azure database to Segment, [give Segment access to your SQL Data Warehouse](#give-segment-access-to-your-sql-data-warehouse) and [configure an Azure Synapse Analytics destination](#configure-an-azure-synapse-analytics-destination-in-segment).
2020

2121
### Give Segment access to your SQL Data Warehouse
2222

@@ -27,18 +27,18 @@ To connect your Azure database to Segment once you've provisioned your dedicated
2727

2828
2. Connect to your Azure database.
2929

30-
3. Segment uses Azure Blob Storage to hold data that is being loaded into Azure Synapse Analytics. In order to facilitate this, a `MASTER KEY` is needed in order for credentials that Segment saves to the database to be encrypted. If you are using your Azure Synapse Analytics instance for more than just a Segment integration, it is possible you already have a master key. Running the command more than once will not create a new master key.
31-
To create a master key, run the following command:
30+
3. Segment uses Azure Blob Storage to hold data that is being loaded into Azure Synapse Analytics. In order to facilitate this, a `MASTER KEY` is needed in order for credentials that Segment saves to the database to be encrypted. To create a master key, run the following command:
3231
```sql
3332
CREATE MASTER KEY;
3433
```
34+
If you are using your Azure Synapse Analytics instance for more than just a Segment integration, it is possible you already have a master key. Running the command more than once will not create a new master key.
3535

3636
4. Create a new database user using the server login that you created in a previous step:
3737
```sql
3838
CREATE USER Segment FOR LOGIN Segment;
3939
```
4040

41-
5. This new user will need database-level permissions to load data and manage the resources it needs:
41+
5. Run the following command to give your new user the permissions to load data and manage the resources in your database:
4242
```sql
4343
GRANT CONTROL TO Segment;
4444
```

0 commit comments

Comments
 (0)