Search
 
SCRIPT & CODE EXAMPLE
 

SQL

create new user in postgres

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

how to create a new user in postgresql

CREATE DATABASE yourdbname;CREATE USER youruser WITH ENCRYPTED PASSWORD 'yourpass';GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser;
Comment

postgresql create user

CREATE USER youruser WITH ENCRYPTED PASSWORD 'yourpass';
GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser;
Comment

psql create user

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

Create user in Postgres

CREATE ROLE <username> WITH LOGIN PASSWORD '<pwd>';
Comment

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;
Comment

postgres server add user

sudo -u postgres createuser -e <name>
Comment

create user and password postgres

dropuser username
Comment

postgre create user

#!/usr/bin/env bash
# to execute, open a terminal in directory and run chmod +x <filename>.sh

user="{user name}"
database="{database name}"
args="--host=localhost --dbname=$database --username=$user"

echo -e "Creating user $user.....
"
sudo -u postgres createuser --createdb --pwprompt $user
echo -e "User Created!
"

echo -e "Creating database $database.....
"
sudo -u postgres createdb --owner=$user $database
echo -e "Database Created!
"
echo -e "Restarting server and starting psql....
"
sudo service postgresql restart

psql $args
Comment

PREVIOUS NEXT
Code Example
Sql :: how to select distinct in mysql 
Sql :: how to install sql in anaconda 
Sql :: The local psql command could not be located 
Sql :: sql count null as 0 
Sql :: mssql check if date is greater than today 
Sql :: mysql kill 
Sql :: sqlite reset autoincrement 
Sql :: oracle locked objects 
Sql :: mysql version 
Sql :: sql server insert into table 
Sql :: postgresql import a database of gzip 
Sql :: average sql 
Sql :: postgres duplicate key value violates unique constraint already exists 
Sql :: sql show table info 
Sql :: alter table add check constraint oracle 
Sql :: regexp in mysql 
Sql :: r rmysql connect local database Plugin caching_sha2_password could not be loaded 
Sql :: sort by mysql 
Sql :: opening xampp mysql in cmd ubuntu 
Sql :: sql log file inof 
Sql :: 11:04:35 PM [mysql] Error: MySQL shutdown unexpectedly. 11:04:35 PM [mysql] This may be due to a blocked port, missing dependencies, 
Sql :: mysql create procedure phpmyadmin 
Sql :: drop schema sql 
Sql :: create table query in mysql 
Sql :: sql having clause 
Sql :: postgre insert select 
Sql :: update in sql server table 
Sql :: postgresql must appear in the GROUP BY clause or be used in an aggregate function 
Sql :: postgres extract time from timestamp 
Sql :: mysql table schema 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =