Skip to content

Add a user ΒΆ

To add a new PostgreSQL user to the warehouse:

  1. Connect via the admin user
  2. Create a new user:

    CREATE USER myusername WITH ENCRYPTED PASSWORD 'generate_a_password';
    
  3. Assign readonly role:

    GRANT readonly TO myusername;