Snowflake
Connect Snowflake to Wobby
Connect Snowflake to Wobby
1. Create Role and User in Snowflake
-- Create role and user
CREATE ROLE wobby_role;
CREATE USER wobby_user
PASSWORD = '<your_secure_password>' -- Define a secure password
DEFAULT_WAREHOUSE = example_wh -- Use your existing warehouse
DEFAULT_ROLE = wobby_role;
-- Link the role to the user
GRANT ROLE wobby_role TO USER wobby_user;
-- Allow warehouse usage
GRANT USAGE ON WAREHOUSE example_wh TO ROLE wobby_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 Wobby’s IP Address
5. Set Up the Connection in Wobby
That’s It!
Last updated