Answers for "change role postgres"

SQL
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

Code answers related to "SQL"

Browse Popular Code Answers by Language