Skip to content

Commit 7c08304

Browse files
committed
Snowflake updates from Data Graph PM
1 parent 6168775 commit 7c08304

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/unify/linked-profiles/setup-guides/snowflake-setup.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ plan: unify
44
beta: true
55
---
66

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.
99
1010
On this page, you'll learn how to connect your Snowflake data warehouse to Segment.
1111

@@ -26,7 +26,7 @@ Segment recommends you use the `ACCOUNTADMIN` role to execute the commands below
2626
> info ""
2727
> This step is optional, and you can use an existing Snowflake warehouse if you'd like.
2828
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.
3030

3131
```sql
3232
CREATE WAREHOUSE segment_entities
@@ -67,9 +67,9 @@ Enter and run the code below to create the username and password combination tha
6767
GRANT ROLE segment_entities TO USER segment_entities_user;
6868
```
6969

70-
## Grant access to tables
70+
## Grant read access to tables
7171

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.
7373

7474
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.
7575

@@ -106,9 +106,9 @@ If you'd like to restrict access to specific tables, use the following command:
106106
GRANT SELECT ON TABLE <schema-name>.<table_name> TO ROLE segment_entities;
107107
```
108108

109-
### RETL table permissions
109+
### Reverse ETL table permissions
110110

111-
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"}:
112112

113113
```sql
114114
GRANT USAGE ON SCHEMA __segment_reverse_etl TO ROLE segment_entities;

0 commit comments

Comments
 (0)