Search
 
SCRIPT & CODE EXAMPLE
 

SQL

postgresql Create a new role with a username and password

CREATE ROLE username NOINHERIT LOGIN PASSWORD password;
Comment

postgresql create role

CREATE ROLE role_name;
Comment

postgresql create role

CREATE ROLE role_name with NOSUPERUSER NOINHERIT NOCREATEROLE NOCREATEDB LOGIN NOREPLICATION NOBYPASSRLS;
Comment

create role postgres

CREATE ROLE <name> WITH <list of permissions>;
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql 1 hour ago 
Sql :: add colum date in sql 
Sql :: psql select database 
Sql :: mysql check if lowercase 
Sql :: postgres select duplicate columns 
Sql :: how to connect postgresql database with java 
Sql :: mssql check if date is greater than today 
Sql :: db.relationship sqlalchemy flask 
Sql :: how to uninstall postgresql 13 on mac 
Sql :: change mariadb to mysql xampp 
Sql :: oracle drop sequence 
Sql :: how to enable mysql 5.7 root user password on linux 
Sql :: postgresql subtract date/hours 
Sql :: how to get 30 days previous date in mysql 
Sql :: alter column set not null to null postgres 
Sql :: sql reverse order of results 
Sql :: reset auto increment mysql 
Sql :: upper case sql 
Sql :: mysql count multiple columns in one query 
Sql :: sql parent child tree query 
Sql :: get yesterday date ISO in psql 
Sql :: postgresql parse json array 
Sql :: cast datetime to date in sql 
Sql :: how to delete a table in mysql 
Sql :: SQL Duplicates by Composite 
Sql :: creating table in sql 
Sql :: lower case in sql 
Sql :: mysql biginteger size 
Sql :: install mysql 5.7 ubuntu 20.04 
Sql :: postgresql in array 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =