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: src/connections/reverse-etl/reverse-etl-source-setup-guides/azure-setup.md
+17-12Lines changed: 17 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -12,42 +12,47 @@ At a high level, when you set up Azure dedicated SQL pools for Reverse ETL, the
12
12
## Required permissions
13
13
Make sure the user you use to connect to Segment has permissions to use that warehouse. You can follow the process below to set up a new user with sufficient permissions for Segment’s use.
14
14
15
+
* To create a login in your master database, run:
16
+
17
+
```
18
+
CREATE LOGIN <login name of your choice> WITH PASSWORD = 'Str0ng_password'; -- password of your choice
19
+
```
20
+
15
21
> info ""
16
-
> Execute all commands in the database where your data resides, except the first `CREATE LOGIN` command, which you need to execute in the master database.
22
+
> Execute the commands below in the database where your data resides.
23
+
24
+
* To create a user for Segment, run:
17
25
18
-
* To create a login and user for Segment, run:
19
-
20
26
```
21
-
CREATE LOGIN SegmentReverseETLLogin WITH PASSWORD = 'Str0ng_password'; -- password of your choice
22
-
CREATE USER SegmentReverseETLUser FOR LOGIN SegmentReverseETLLogin;
27
+
CREATE USER <user name of your choice> FOR LOGIN <login name of your choice>;
23
28
```
24
29
25
30
* To grant access to the user to read data from all schemas in the database, run:
0 commit comments