英文:
Data listings in snowflake marketplace
问题
有没有办法限制雪花角色只能从雪花市场获取/请求所选列表的数据集。例如,我希望只允许批准的数据集从雪花市场获取/请求。
英文:
Is there a way to restrict snowflake roles to get/request only a selected list of datasets from the snowflake marketplace. For example, I want to allow only approved datasets to be get/request from snowflake market place
答案1
得分: 1
默认情况下,只有 ACCOUNTADMIN 角色可以导入数据集。当不同的角色尝试导入数据集时,会引发错误:
您当前的角色(ROLE_NAME)缺少获取数据产品的权限。请使用具有 IMPORT SHARE 和 CREATE DATABASE 权限的角色,或联系您的账户管理员为您获取此数据产品。
因此,根据错误消息,用户将不得不联系账户管理员为他们获取数据集。
英文:
By default only ACCOUNTADMIN role can import the datasets. When a different role tries to import a data set it will throw an error:
> Your current role (ROLE_NAME) lacks privileges to get data products. Use a role with IMPORT SHARE and CREATE DATABASE privileges or contact your account admin to get this data product for you.
So, as per the error message users will have to reach out to the account admin to get the dataset for them.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论