Create User With Role Postgres Code Example


Example 1: create db user postgres


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;

Example 2: postgresql create user roles


CREATE ROLE admin WITH CREATEDB CREATEROLE;

Example 3: postgresql create user roles


CREATE ROLE name [ WITH ADMIN role_name ]

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable