psql create usr

Solutions on MaxInterview for psql create usr by the best coders in the world

showing results for - "psql create usr"
Emma
12 Jan 2018
1CREATE USER name [ [ WITH ] option [ ... ] ]
2
3where option can be:
4    
5      SYSID uid 
6    | CREATEDB | NOCREATEDB
7    | CREATEUSER | NOCREATEUSER
8    | IN GROUP groupname [, ...]
9    | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password'
10    | VALID UNTIL 'abstime'