79547213

Date: 2025-03-31 20:32:55
Score: 0.5
Natty:
Report link

Updating PeterB's answer now that you can easily grant for all (existing) functions. To grant usage on current and future functions, run these two commands:

grant usage on all functions in schema "myDB"."mySchema" to role MyRole;
grant usage on future functions in schema "myDB"."mySchema" to role MyRole;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ward W