Answers for "superuser postgresql"

SQL
1

postgres create user with superuser privileges

sudo -u postgres createuser -s -i -d -r -l -w <<username>>
sudo -u postgres psql -c "ALTER ROLE <<username>> WITH PASSWORD '<<password>>';"
Posted by: Guest on November-03-2020
1

postgresql change user role grant

=# ALTER USER librarian WITH SUPERUSER;
ALTER ROLE
Posted by: Guest on July-22-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 "SQL"

Browse Popular Code Answers by Language