Creating Snowflake Resource Monitors

Here’s an example of a simple notification resource monitor where 75% of 1 Snowflake credit is used. Just an example.

CREATE RESOURCE MONITOR “DAILY_MONITOR” WITH CREDIT_QUOTA = 1
TRIGGERS
ON 75 PERCENT DO NOTIFY;
ALTER ACCOUNT SET RESOURCE_MONITOR = “DAILY_MONITOR”;

Leave a Comment

Scroll to Top