Esc

Snowflake

Overview

Snowflake is a cloud-native data platform that provides a fully managed data warehouse, data lake, and data sharing service. It runs on AWS, Azure, and Google Cloud with automatic scaling, near-zero maintenance, and support for semi-structured data formats like JSON, Avro, and Parquet. Snowflake separates compute (virtual warehouses) from storage, allowing independent scaling of each.

Driver

Connection fields

FieldDescription
AccountSnowflake account identifier, e.g. xy12345.us-east-1 or myorg-myaccount.
WarehouseVirtual warehouse to use for queries. Stored in the options field as warehouse=NAME.
DatabaseName of the database to connect to.
SchemaDefault schema. Stored in options as schema=NAME.
RoleSnowflake role to assume. Stored in options as role=NAME.
UserSnowflake username.
PasswordAuthentication password. Stored in the macOS Keychain.

All connections also support an optional SSH tunnel. Configure the bastion host, port, user, and private key file under the SSH section of the connection form. SeeSSH tunnels for details.

URI format

Instead of filling in each field individually, you can paste a connection URI into thePaste URI field. Arris parses the URI and populates all fields automatically.

textConnection URI
snowflake://user:password@account/database?warehouse=COMPUTE_WH&role=SYSADMIN&schema=PUBLIC

Cloud provider connection strings from the Snowflake web UI can be pasted directly — Arris extracts the account identifier, database, and other parameters automatically.

Schema browser

Once connected, Arris queries INFORMATION_SCHEMA in the connected database and organizes the schema tree into groups.

The schema tree displays the following object types, grouped by category:

Double-click any table or view to open it in a new tab with browse mode.

Supported SQL commands

CommandNotes
SELECTQuery data with WHERE filters, JOINs, aggregates, and window functions.
INSERTInsert single or multiple rows.
UPDATEUpdate existing rows.
DELETEDelete rows.
CREATE / DROPCreate and drop tables, views, and other schema objects.