Redshift Permissions Example Code Update #6738
Labels
content
Improvements or additions to content
improvement
Use this when an area of the docs needs improvement as it's currently unclear
Contributions
Link to the page on docs.getdbt.com requiring updates
https://docs.getdbt.com/reference/database-permissions/redshift-permissions
What part(s) of the page would you like to see updated?
The first command shown
grant usage on database database_name to user_name;
is not accurate. You cannot grant usage on a database, but you can on a schema.Instead of USAGE you would want to use CONNECT
grant connect on database database_name to user_or_group
Additional information
No response
The text was updated successfully, but these errors were encountered: