Answers for "user postgres"

SQL
2

psql create user

# https://www.postgresql.org/docs/8.0/sql-createuser.html
CREATE USER <username> WITH PASSWORD '<password>' VALID UNTIL '<date here>';
Posted by: Guest on April-08-2020
0

Make a user in Postgresql

CREATE USER jonathan;
CREATE USER davide WITH PASSWORD 'jw8s0F4';
CREATE USER miriam WITH PASSWORD 'jw8s0F4' VALID UNTIL '2005-01-01';
CREATE USER manuel WITH PASSWORD 'jw8s0F4' CREATEDB;
Posted by: Guest on July-05-2021
0

create and attach user to a postgresql database

sudo -u postgres psqlpostgres=# create database mydb;postgres=# create user myuser with encrypted password 'mypass';postgres=# grant all privileges on database mydb to myuser;
Posted by: Guest on September-22-2020
0

How do I add a user to a postgres database? cli

psql=# grant all privileges on database <dbname> to <username>
Posted by: Guest on June-16-2020
-1

create postgres user

createuser --interactive
Posted by: Guest on June-26-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language