Re: [DOCS] PostgreSQL 8.2.3 Documentation - createuser - echoed command

2007-02-26 Thread Bruce Momjian
The -E/-N options control how the password is stored in the server, and that is what you are seeing in different ENCRYPTED PASSWORD entries. Generally, you should never use -N. --- Halley Pacheco de Oliveira wrote: > In the

[DOCS] PostgreSQL 8.2.3 Documentation - createuser - echoed command

2007-02-25 Thread Halley Pacheco de Oliveira
In the createuser command page is written: To create the user joe as a superuser, and assign a password immediately: $ createuser -P -s -e joe Enter password for new role: xyzzy Enter it again: xyzzy CREATE ROLE joe PASSWORD 'xyzzy' SUPERUSER CREATEDB CREATEROLE INHERIT LOGIN; CREATE ROLE In the