“Utwórz Windows użytkownika Postgres” Kod odpowiedzi

Utwórz postgres użytkowników DB

sudo -u postgres psql
postgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;
Igor Parra

Utwórz Windows użytkownika Postgres

to start postgres, go to bin, open cmd and type:
psql.exe -U postgres

for linux:
sudo -u postgres psql

postgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;
Alien0w0

Utwórz nowego użytkownika w Postgres

CREATE USER visualscrapy WITH PASSWORD '123456';
# it will create the new user in postgres
visualscrapper

Utwórz Windows użytkownika Postgres

# in the terminal (not inside psql)
createuser -P --interactive ExampleUser

# Inside psql (using SQL)
CREATE USER john WITH PASSWORD 'mypass' CREATEDB;
Jarett Sisk

PSQL Utwórz użytkownika

# https://www.postgresql.org/docs/8.0/sql-createuser.html
CREATE USER <username> WITH PASSWORD '<password>' VALID UNTIL '<date here>';
Weeke

Odpowiedzi podobne do “Utwórz Windows użytkownika Postgres”

Pytania podobne do “Utwórz Windows użytkownika Postgres”

Więcej pokrewnych odpowiedzi na “Utwórz Windows użytkownika Postgres” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu