Answers for "postgres change role permissions"

SQL
1

postgresql change user role grant

=# ALTER USER librarian WITH SUPERUSER;
ALTER ROLE
Posted by: Guest on July-22-2020
0

change role postgres

# make 'dave' superuser and allow him to create databases
ALTER ROLE dave WITH SUPERUSER;
ALTER ROLE dave WITH CREATEDB;
Posted by: Guest on July-14-2020
-1

postgresql change user role grant

=# ALTER USER role_specification WITH OPTION1 OPTION2 OPTION3;
Posted by: Guest on July-22-2020

Code answers related to "postgres change role permissions"

Code answers related to "SQL"

Browse Popular Code Answers by Language