ZelaxyDocs
Tool Integrations
Tool

Snowflake

Execute queries on Snowflake data warehouse

Snowflake

Run SQL queries on your Snowflake data warehouse. Supports standard queries, warehouse selection, and schema navigation for analytics and data workflows.

Overview

PropertyValue
Typesnowflake
CategoryTool — Database
AuthSnowflake Credentials

Operations

OperationDescription
QueryExecute a SQL query
List DatabasesGet available databases
List SchemasGet schemas in a database
List TablesGet tables in a schema

Configuration

SettingTypeDescription
AccountShort inputSnowflake account identifier
UsernameShort inputUser name
PasswordPasswordPassword
WarehouseShort inputCompute warehouse name
DatabaseShort inputDatabase name
SchemaShort inputSchema name
QueryCode editorSQL to execute
RoleShort inputSnowflake role (optional)

Outputs

FieldTypeDescription
datajsonQuery results
contentstringFormatted data
columnsjsonColumn metadata

Example: Analytics Dashboard

Workflow:

[Starter (schedule: daily 8am)] → [Snowflake: Query] → [Agent: Analyze] → [Slack: Report]

Query:

SELECT DATE_TRUNC('day', created_at) as date,
       COUNT(*) as signups,
       SUM(revenue) as daily_revenue
FROM analytics.events
WHERE created_at >= DATEADD('day', -7, CURRENT_DATE())
GROUP BY 1 ORDER BY 1

Agent analyzes the weekly trends and posts a daily analytics summary to Slack.

Tips

  • Warehouse selection matters — use a small warehouse for simple queries, large for heavy analytics
  • Role determines access — ensure your role has SELECT permissions on target tables
  • See Snowflake Setup Guide for detailed configuration