Skip to content

Commit e14bdba

Browse files
authored
remove grant usage on redshift permissions
this pr removes the `grant usage on database database_name to user_name;` command in the redshift database permissions page. raised with @mikealfare [in internal slack](https://dbt-labs.slack.com/archives/C067EUS2D7S/p1736358281678169) Resolves #6738
1 parent d0d7f55 commit e14bdba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

website/docs/reference/database-permissions/redshift-permissions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ The following example provides you with the SQL statements you can use to manage
1212

1313

1414
```
15-
grant usage on database database_name to user_name;
1615
grant create schema on database database_name to user_name;
1716
grant usage on schema database.schema_name to user_name;
1817
grant create table on schema database.schema_name to user_name;
@@ -22,4 +21,6 @@ grant select on all tables in database database_name to user_name;
2221
grant select on all views in database database_name to user_name;
2322
```
2423

24+
To connect to the database, confirm with an admin that your user role or group has been added to the database.
25+
2526
Check out the [official documentation](https://docs.aws.amazon.com/redshift/latest/dg/r_GRANT.html) for more information.

0 commit comments

Comments
 (0)