Snowflake Setup
Unify requires a Business tier account and is included with Engage.
See the available plans, or contact Support.
Linked Events is in private beta
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 with any feedback or questions.
On this page, you’ll learn how to connect your Snowflake data warehouse to Segment.
Be sure to log in with a user that has read and write permissions so that Segment can write to your database.
Getting started
To get started with Snowflake:
- Log in to your Snowflake account.
- Navigate to Worksheets.
Segment recommends you use the ACCOUNTADMIN
role to execute the commands below.
Create a new warehouse
This step is optional, and you can use an existing Snowflake warehouse if you’d like.
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.
CREATE WAREHOUSE segment_entities
WITH WAREHOUSE_SIZE = 'XSMALL'
WAREHOUSE_TYPE = 'STANDARD'
AUTO_SUSPEND = 600 -- 5 minutes
AUTO_RESUME = TRUE;
Create a new role
Enter and run the code below to create specific roles for Linked Profiles. All Snowflake access is specified through roles, which are then assigned to the user you’ll create later.
-- create role
CREATE ROLE segment_entities;
-- warehouse access
GRANT USAGE ON WAREHOUSE segment_entities TO ROLE segment_entities;
-- database access
GRANT USAGE ON DATABASE <database-name> TO ROLE segment_entities;
GRANT CREATE SCHEMA ON DATABASE <database-name> TO ROLE segment_entities;
Create a new user
Enter and run the code below to create the username and password combination that will be used to execute queries. Make sure to enter your password where it says <my_strong_password>
.
-- create user
CREATE USER segment_entities_user
MUST_CHANGE_PASSWORD = FALSE
DEFAULT_ROLE = segment_entities
PASSWORD = 'my_strong_password'; -- Do not use this password
-- role access
GRANT ROLE segment_entities TO USER segment_entities_user;
Grant access to tables
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.
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.
Visit Snowflake’s docs to learn more about schema priveleges and table priveleges.
Schema access
Run the following command to give access to specific schemas you want to use for enrichment.
-- view specific schemas in database
GRANT USAGE ON SCHEMA <schema-name-1> TO ROLE segment_entities;
GRANT USAGE ON SCHEMA <schema-name-2> TO ROLE segment_entities;
-- query data from all tables in a schema
GRANT SELECT ON ALL TABLES IN SCHEMA <schema-name-1> TO ROLE segment_entities;
GRANT SELECT ON ALL TABLES IN SCHEMA <schema-name-2> TO ROLE segment_entities;
-- query data from future tables in a schema
GRANT SELECT ON FUTURE TABLES IN SCHEMA <schema-name-1> TO ROLE segment_entities;
GRANT SELECT ON FUTURE TABLES IN SCHEMA <schema-name-2> TO ROLE segment_entities;
Table access
If you’d like to restrict access to specific tables, use the following command:
-- query data from a specific table in a schema
GRANT SELECT ON TABLE <schema-name>.<table_name> TO ROLE segment_entities;
RETL table permissions
If you’ve ever run Reverse ETL in your database, you’ll need to add the following table permissions:
GRANT USAGE ON SCHEMA __segment_reverse_etl TO ROLE segment_entities;
GRANT CREATE TABLE ON SCHEMA __segment_reverse_etl TO ROLE segment_entities;
GRANT SELECT, INSERT, UPDATE, DELETE ON ALL TABLES IN SCHEMA __segment_reverse_etl TO ROLE segment_entities;
Confirm table permissions
To confirm table permissions:
- Log in as the user you’ve created (
segment_entities_user
). - Verify the role created has the correct permissions with the commands below.
use role segment_entities;
use <your_database>;
show schemas;
select * from <your_database>.<schema-name>.<table-name> limit 10
The output should match the permissions you’ve given in previous steps.
This page was last modified: 09 Oct 2023
Need support?
Questions? Problems? Need more info? Contact Segment Support for assistance!