Connect to Snowflake to sync metadata, lineage, and access logs.
Prerequisites
Snowflake account with ACCOUNTADMIN or SECURITYADMIN privileges
Service account with read access to ACCOUNT_USAGE schema
Setup
Create a service account user in Snowflake
Grant the user access to read database metadata
In Zenithdata, navigate to Settings → Connectors → Add Connector
Select Snowflake and enter your credentials
Required SQL Grants
CREATE USER zenithdata_user PASSWORD = 'xxx';
CREATE ROLE zenithdata_role;
GRANT ROLE zenithdata_role TO USER zenithdata_user;
GRANT IMPORTED PRIVILEGES ON DATABASE SNOWFLAKE TO ROLE zenithdata_role;
GRANT USAGE ON WAREHOUSE COMPUTE_WH TO ROLE zenithdata_role;