Skip to content

Commit 590c4a0

Browse files
committed
Snowflake updates
1 parent 65da6ce commit 590c4a0

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

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

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ To use Linked Events, you'll need to grant access to `segment_entities_user` for
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

76+
> info ""
77+
> Segment only supports tables, materialized views, views, and external tables as data sources.
78+
7679
> success ""
7780
> Visit Snowflake's docs to learn more about [schema priveleges](https://docs.snowflake.com/en/user-guide/security-access-control-privileges#schema-privileges){:target="_blank"} and [table priveleges](https://docs.snowflake.com/en/user-guide/security-access-control-privileges#table-privileges){:target="_blank"}.
7881
@@ -122,10 +125,10 @@ To confirm table permissions:
122125
2. Verify the role created has the correct permissions with the commands below.
123126

124127
```ts
125-
use role segment_entities;
126-
use <your_database>;
127-
show schemas;
128-
select * from <your_database>.<schema-name>.<table-name> limit 10
128+
USE ROLE segment_entities;
129+
USE DATABASE <your_database>;
130+
SHOW SCHEMAS;
131+
SELECT * FROM <your_database>.<schema-name>.<table-name> LIMIT 10;
129132
```
130133

131134
The output should match the permissions you've given in previous steps.

0 commit comments

Comments
 (0)