英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论