Xi12
Xi12

Reputation: 1213

How to grant read ,write and create access on a all tables in a database

I would like to give access to a role and it should be able to create schemas, create tables, Materialized views ..etc. He should be able to do everything related to the database.

How to achieve this?

Thanks,

Xi

Upvotes: 1

Views: 357

Answers (1)

NickW
NickW

Reputation: 9778

Two options:

  1. Make the role the owner of the database
  2. Grant the role the specific permissions you want it to have

Upvotes: 1

Related Questions