doc(redshift): Add grant statements (#4559)

This commit is contained in:
Abhiram98 2022-04-08 20:00:43 +05:30 committed by GitHub
parent 7c3ad3d293
commit cd43a4a543
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,8 @@ This source needs to access system tables that require extra permissions.
To grant these permissions, please alter your datahub Redshift user the following way:
```sql
ALTER USER datahub_user WITH SYSLOG ACCESS UNRESTRICTED;
GRANT SELECT ON pg_catalog.svv_table_info to datahub_user;
GRANT SELECT ON pg_catalog.svl_user_info to datahub_user;
```
:::note