Answers for "create user role in postgres"

C
0

create role in psql with password

postgres=#CREATE ROLE demorole1 WITH LOGIN ENCRYPTED PASSWORD 'password1';
Posted by: Guest on June-16-2021
0

how to add user to role postgresql

CREATE ROLE joe LOGIN INHERIT;
CREATE ROLE admin NOINHERIT;
CREATE ROLE wheel NOINHERIT;
GRANT admin TO joe;
GRANT wheel TO admin;
Posted by: Guest on January-27-2021
0

create role in psql with password

# sudo su - postgres
Posted by: Guest on June-16-2021

Code answers related to "create user role in postgres"

Code answers related to "C"

Browse Popular Code Answers by Language