在 REDSHIFT 中自动拒绝 Redshift 访问
Redshift access denied automatically in REDSHIFT
grant usage on schema apps to group group_name;
grant SELECT ON ALL TABLES IN schema apps to group group_name;
alter default privileges in schema apps grant select on tables to group group_name;
授予组访问权限的评论
我在 redshift 中创建了用户或组。最初,他们可以访问 table。当 table 重新创建访问时自动拒绝。谁能帮忙解决这个问题?
希望能帮到你。用户需要设置默认 ACL,为用户创建的所有表提供一组授权。参见:
https://docs.aws.amazon.com/redshift/latest/dg/r_ALTER_DEFAULT_PRIVILEGES.html
对象的创建者需要授予其他人,但这可以通过设置他们的默认权限自动完成。
希望对您有所帮助
grant usage on schema apps to group group_name;
grant SELECT ON ALL TABLES IN schema apps to group group_name;
alter default privileges in schema apps grant select on tables to group group_name;
授予组访问权限的评论
我在 redshift 中创建了用户或组。最初,他们可以访问 table。当 table 重新创建访问时自动拒绝。谁能帮忙解决这个问题?
希望能帮到你。用户需要设置默认 ACL,为用户创建的所有表提供一组授权。参见:
https://docs.aws.amazon.com/redshift/latest/dg/r_ALTER_DEFAULT_PRIVILEGES.html
对象的创建者需要授予其他人,但这可以通过设置他们的默认权限自动完成。
希望对您有所帮助