File tree 1 file changed +2
-1
lines changed
website/docs/reference/database-permissions 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ The following example provides you with the SQL statements you can use to manage
12
12
13
13
14
14
```
15
- grant usage on database database_name to user_name;
16
15
grant create schema on database database_name to user_name;
17
16
grant usage on schema database.schema_name to user_name;
18
17
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;
22
21
grant select on all views in database database_name to user_name;
23
22
```
24
23
24
+ To connect to the database, confirm with an admin that your user role or group has been added to the database.
25
+
25
26
Check out the [ official documentation] ( https://docs.aws.amazon.com/redshift/latest/dg/r_GRANT.html ) for more information.
You can’t perform that action at this time.
0 commit comments