Answers for "postgres add superuser to database"

SQL
1

postgres set user as superuser

ALTER USER myuser WITH SUPERUSER;
Posted by: Guest on December-23-2021
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

postgres add superuser to database

create USER <<username>>;
ALTER USER <<username>> WITH SUPERUSER;
ALTER USER <<username>> WITH PASSWORD '<<password>>';
Posted by: Guest on April-05-2022

Code answers related to "postgres add superuser to database"

Code answers related to "SQL"

Browse Popular Code Answers by Language