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/unify/linked-profiles/setup-guides/snowflake-setup.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ plan: unify
4
4
beta: true
5
5
---
6
6
7
-
> info "Linked Events is in private beta"
8
-
> Linked Events is in private beta, and Segment is actively working on this feature. Some functionality may change before it becomes generally available. [Contact Segment](https://segment.com/help/contact/){:target="_blank"} with any feedback or questions.
7
+
> info "Linked Profiles is in private beta"
8
+
> Linked Profiles (Data Graph, Linked Events, and Linked Audiences) is in private beta, and Segment is actively working on this feature. Some functionality may change before it becomes generally available. [Contact Segment](https://segment.com/help/contact/){:target="_blank"} with any feedback or questions.
9
9
10
10
On this page, you'll learn how to connect your Snowflake data warehouse to Segment.
11
11
@@ -26,7 +26,7 @@ Segment recommends you use the `ACCOUNTADMIN` role to execute the commands below
26
26
> info ""
27
27
> This step is optional, and you can use an existing Snowflake warehouse if you'd like.
28
28
29
-
Enter and run the code below to create a virtual warehouse. Linked Events needs to execute queries on your Snowflake account, which requires a Virtual Warehouse to handle the compute.
29
+
Enter and run the code below to create a virtual warehouse. Linked Profiles needs to execute queries on your Snowflake account, which requires a Virtual Warehouse to handle the compute.
30
30
31
31
```sql
32
32
CREATE WAREHOUSE segment_entities
@@ -67,9 +67,9 @@ Enter and run the code below to create the username and password combination tha
67
67
GRANT ROLE segment_entities TO USER segment_entities_user;
68
68
```
69
69
70
-
## Grant access to tables
70
+
## Grant read access to tables
71
71
72
-
To use Linked Events, you'll need to grant access to `segment_entities_user` for the schemas and tables you'd like to read from to perform enrichments.
72
+
To use Linked Profiles, you'll need to grant access to `segment_entities_user` for the schemas and tables you'd like to read from to perform enrichments.
73
73
74
74
These tables need to live in the same database as the one used for storing sync deltas. You can give as broad or narrow of access as you require. If you give broad access to multiple schemas, you can sort through the schemas in Segment to select the appropriate tables to create models from.
75
75
@@ -106,9 +106,9 @@ If you'd like to restrict access to specific tables, use the following command:
If you've ever run Reverse ETL in your database, you'll need to add the following [table permissions](https://docs.snowflake.com/en/user-guide/security-access-control-privileges#table-privileges){:target="_blank"}:
111
+
If you've ever run Segment's Reverse ETL in your database, you'll need to add the following [table permissions](https://docs.snowflake.com/en/user-guide/security-access-control-privileges#table-privileges){:target="_blank"}:
112
112
113
113
```sql
114
114
GRANT USAGE ON SCHEMA __segment_reverse_etl TO ROLE segment_entities;
0 commit comments