Snowflake
Last updated: September 8, 2025
Connect Zams to your Snowflake data warehouse using OAuth. Just provide your Snowflake account subdomain, complete the OAuth flow, and you can run queries, explore schemas, and export results — all via natural language.
Connection Method
Type: OAuth 2.0 (via a Security Integration in Snowflake)
Requirements:
Your Snowflake account subdomain (e.g.
myorg.us-east-1)A Snowflake OAuth security integration set up by your administrator
Available Functionalites
Funcionality | Description |
Run query | Execute custom SQL queries against your Snowflake warehouse. |
List DB Objects | Browse available databases, schemas, and tables. |
Get Table Schema | Retrieve column definitions, data types, and metadata for a table. |
Export Query Results | Download query results as CSV or JSON for analysis or reporting. |
Example of Use
Run an analytical query
“
@Snowflakerun SQL query:SELECT COUNT(*) FROM sales.transactions WHERE transaction_date > '2025-01-01'.”
Browse data structures
“
@Snowflakelist databases in my account.”
Inspect a table
“
@Snowflakewhat’s the schema for tableanalytics.customer_profiles?”
Export results
“
@Snowflakeexport the result ofSELECT * FROM marketing.leads LIMIT 100as CSV.”