Answers for "give permission to user postgres"

SQL
0

grant permission in postgres

GRANT ALL PRIVILEGES ON DATABASE db_name TO username;
Posted by: Guest on October-31-2021
-1

postgresql user permissions to database

sudo -u postgres 
psqlpostgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;
Posted by: Guest on October-07-2020

Code answers related to "give permission to user postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language