将特定表格的访问权限授予Snowflake中的角色。

huangapple go评论62阅读模式
英文:

grant particular table access to role in Snowflake

问题

我已创建了一个名为 db.public.newTable 的新表格。
现在我需要将此表格授予 Snowflake 中的开发者角色访问权限。正确的查询是什么,可以将此表格的访问权限授予开发者角色?

英文:

I have created a new table called db.public.newTable.
Now I need to give this table access to the role developer in Snowflake. What will the correct query grant this table access to the role developer?

答案1

得分: 1

如果你想授予所有权限,可以这样做:

GRANT ALL PRIVILEGES ON TABLE db.public.newTable TO ROLE developer;

这在这里有详细文档。

英文:

If you want to grant all privileges you can do it like this:

GRANT ALL PRIVILEGES ON TABLE db.public.newTable TO ROLE developer;

This is well documented here.

huangapple
  • 本文由 发表于 2023年5月22日 20:04:12
  • 转载请务必保留本文链接:https://go.coder-hub.com/76306011.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定