0

I am trying to grant the monitor privilege on all current and future tasks in a snowflake database to a particular role.

The documentation offers no examples.

I tried GRANT MONITOR ON ALL TASKS ON DATABASE MY_DB TO ROLE ROLE_OVER

Is something like that possible? Do you have to go schema by schema? Individual task by task?

vbp13
  • 1,040
  • 1
  • 10
  • 20

1 Answers1

1

Try this (IN instead of ON):

GRANT MONITOR ON ALL TASKS IN DATABASE MY_DB TO ROLE ROLE_OVER
;
Darren Gardner
  • 1,094
  • 4
  • 6