<aside> đź’ˇ This enables Glazed to automatically validate that the events you create on the Glazed App are correctly arriving to your data warehouse.

</aside>

Steps

  1. Open new SQL Worksheet in Snowflake Note: you’ll need the necessary right to create Snowflake Roles and Users.
  2. Edit the below query by adding your corresponding values for:
  3. Run the query: Note: this grants the “GLAZED” user permission to run SELECT statements only on the specified table. You can modify the query to grant access to multiple tables as needed.
CREATE ROLE "GLAZED_ANALYTICS";

CREATE USER "GLAZED"
    MUST_CHANGE_PASSWORD = FALSE
    DEFAULT_ROLE = "GLAZED_ANALYTICS"
    PASSWORD = "[PASSWORD]";

GRANT USAGE ON WAREHOUSE "[YOUR WAREHOUSE NAME]" TO ROLE "GLAZED_ANALYTICS";
GRANT USAGE ON DATABASE "[YOUR DATABASE NAME]" TO ROLE "GLAZED_ANALYTICS";
GRANT USAGE ON SCHEMA "[YOUR DATABASE NAME]"."[YOUR SCHEMA NAME]" TO ROLE "GLAZED_ANALYTICS";
GRANT SELECT ON TABLE "[YOUR DATABASE NAME]"."[YOUR SCHEMA NAME]"."[YOUR TABLE NAME]" TO ROLE "GLAZED_ANALYTICS";
GRANT ROLE "GLAZED_ANALYTICS" TO USER "GLAZED";

How to find the right values?

****You can also run the query SELECT CURRENT_ORGANIZATION_NAME(), CURRENT_ACCOUNT_NAME(); to access the Organization and account names directly. → More infos here: https://docs.snowflake.com/en/user-guide/admin-account-identifier