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
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:
13
13
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"}.
15
15
2. Provision a [Dedicated SQL Pool](https://docs.microsoft.com/en-us/azure/sql-data-warehouse/create-data-warehouse-portal){:target="_blank"}.
16
16
17
17
## Connect your Azure database to Segment
18
18
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).
20
20
21
21
### Give Segment access to your SQL Data Warehouse
22
22
@@ -27,18 +27,18 @@ To connect your Azure database to Segment once you've provisioned your dedicated
27
27
28
28
2. Connect to your Azure database.
29
29
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:
32
31
```sql
33
32
CREATE MASTER KEY;
34
33
```
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.
35
35
36
36
4. Create a new database user using the server login that you created in a previous step:
37
37
```sql
38
38
CREATEUSERSegment FOR LOGIN Segment;
39
39
```
40
40
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:
0 commit comments