How to assign superuser privileges in PostgreSQL
We can modify any normal user to superuser using ALTER query in PostgreSQL.
>ALTER USER username WITH SUPERUSER;
Where username need to be replaced with the required value.
That's all…
For Techs.... Techniques.... Technologies....
We can modify any normal user to superuser using ALTER query in PostgreSQL.
>ALTER USER username WITH SUPERUSER;
Where username need to be replaced with the required value.
That's all…