I am trying to set up alert if someone tries to query > threshold of sensitive data(eg email) in Snowflake. How can I achieve this?
Asked
Active
Viewed 348 times
2 Answers
1
No built in functionality here. But with the content from here https://medium.com/hashmapinc/sending-email-notifications-from-snowflake-using-external-functions-4b985c182292 you can use external functions and AWS to send emails. The reason, why the email is triggered, is then your Snowflake implementation.

Marcel
- 2,454
- 1
- 5
- 13
1
Snowflake does not have this functionality built in, but it is easily extensible. You can write functions or procedures in JAVA, Scala, Python (soon) and send notifications that way. Or you can use an external monitoring mechanism such as SNOWALERT

Michael Golos
- 1,814
- 1
- 6
- 16
-
can you please elaborate on how this can be done with python? – piya Mar 04 '22 at 20:39