Add a user ΒΆ
To add a new PostgreSQL user to the warehouse:
- Connect via the
admin
user -
Create a new user:
CREATE USER myusername WITH ENCRYPTED PASSWORD 'generate_a_password';
-
Assign
readonly
role:GRANT readonly TO myusername;
To add a new PostgreSQL user to the warehouse:
admin
userCreate a new user:
CREATE USER myusername WITH ENCRYPTED PASSWORD 'generate_a_password';
Assign readonly
role:
GRANT readonly TO myusername;