
Activepieces lets you connect Snowflake with the most popular apps, so you can automate your work and have more time for what matters most - no code required.
Start free
Triggers when a new row is inserted into the selected table. Uses a timestamp column you choose to detect rows added since the last check.

Triggers when a new column is added to the selected table. Checked by polling every few minutes.

Triggers when a new view is created in the selected schema. Checked by polling every few minutes.

Triggers when a row is inserted or updated in the selected table. Uses an "updated at" timestamp column you choose — any row whose timestamp is newer than the last check will fire the trigger.

Triggers when a new table is created in the selected schema. Checked by polling every few minutes.

Execute a SQL query against your Snowflake database and return the results as rows.

Insert a row into a table.

Delete one or more rows from a Snowflake table that match a WHERE condition.

Insert multiple rows into a Snowflake table in a single operation.

Search for rows in a Snowflake table using an optional WHERE condition, ordering, and row limit.

List all tables in a Snowflake schema.

Create or replace a Snowflake Dynamic Table that automatically refreshes based on a query. Dynamic Tables are a declarative way to define a table whose content is derived from a query, updated on a schedule.

Execute multiple SQL statements in sequence against your Snowflake database. Optionally wrap them in a transaction so all changes are rolled back if any statement fails.

Update one or more rows in a Snowflake table that match a WHERE condition.

Insert a new row or update an existing one if a row with the same match column value already exists (MERGE INTO).

Retrieve a single row from a Snowflake table by matching a column value.

Retrieve the column definitions (name, data type, nullability, default) for a Snowflake table.

Call a stored procedure in Snowflake and return its result.

Load data into a Snowflake table from a named internal or external stage using COPY INTO.