Snowflake
Connect Snowflake to Actian AI Analyst
Connect Snowflake to Actian AI Analyst
1. Create Role and User in Snowflake
-- Create role and user
CREATE ROLE analyst_role;
CREATE USER analyst_user
PASSWORD = '<your_secure_password>' -- Define a secure password
DEFAULT_WAREHOUSE = example_wh -- Use your existing warehouse
DEFAULT_ROLE = analyst_role;
-- Link the role to the user
GRANT ROLE analyst_role TO USER analyst_user;
-- Allow warehouse usage
GRANT USAGE ON WAREHOUSE example_wh TO ROLE analyst_role;2. Grant Read-Only Access to Data
3. Optional Grants
For Shared Databases
Grant Metadata Access for Foreign Keys
For Query History (Optional)
4. Allow Actian AI Analyst's IP Address
5. Set Up the Connection in Actian AI Analyst
That's It!
Last updated
Was this helpful?