Snowflake profiles, minus the worksheet.
Password/MFA, key-pair, OAuth, and external-browser authentication, typed Snowflake SQL, schema snapshot, diff, and designer, encrypted archives, and administration.
Password/MFA · key-pair · OAuth · external browser
The query profile Mongrel would show you.
Click any operator below to see partitions scanned, time share, and where the query time went. Same view you get inside the workbench.
// TableScan · analytics.events
Scans 4,218 of 4,230 micro-partitions (38.4 GB). Pruning 0.3% - the date filter can't prune because events has no clustering key.
-- analytics · ANALYTICS_WH (X-Small) SELECT DATE_TRUNC('week', e.event_date) AS week, a.plan, COUNT(*) AS events, SUM(e.revenue) AS revenue FROM analytics.events e JOIN analytics.accounts a ON a.account_id = e.account_id WHERE e.event_date >= '2026-01-01' GROUP BY 1, 2 ORDER BY week DESC, revenue DESC; -- 1m 42s · 38.4 GB scanned · 4,218/4,230 partitions -- Follow-up: add a clustering key on event_date ALTER TABLE analytics.events CLUSTER BY (event_date, account_id);
What Mongrel ships for Snowflake.
Browse & edit tables
Navigate databases, schemas, tables, and views. Filter, sort, insert, update, and delete rows - one at a time or in bulk.
Query profile inspector
Per-operator breakdown: partitions scanned and pruned, bytes spilled, remote I/O, and where query time actually goes.
Data copy & sync
Copy databases or schemas between connections, then keep them aligned with plan/apply sync - insert-only, update, or fail-on-conflict.
Schema snapshots & diff
Snapshot databases, schemas, and tables. Diff any two snapshots for a deterministic added, removed, and changed report.
Schema designer
Model schemas, tables, and relationships visually. Generates clean Snowflake DDL, not another tangled worksheet.
Auth, your way
Password with MFA, key-pair, OAuth, or external browser. Per-connection, stored securely, never in plaintext.
AI explain & rewrite
Ask about a query or paste its profile. The assistant explains the plan and drafts rewrites you review before inserting.
Encrypted archives
Archive tables, views, and schema into AES-256-encrypted logical backups. Restore or share them on your terms.
Administration
Warehouses, databases, users, and roles at a glance, with safe grant/revoke planning. Bounded query history, no worksheet required.

