Re: Changing user passwords

From: "Nagy Laszlo Zsolt , KLTE TTK pm1" <nagylzs(at)dragon(dot)klte(dot)hu>
To: Rob van der Leek <rob(at)frog(dot)nl>
Cc: "pgsql-sql(at)hub(dot)org" <pgsql-sql(at)hub(dot)org>
Subject: Re: Changing user passwords
Date: 2000-08-08 12:59:20
Message-ID: Pine.GSO.4.10.10008081457470.20170-100000@dragon
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

> Is it possible to change a user's password without using the pg_passwd
> command?
> For example, how does a user changes his password from the interactive
> monitor?

See the following commands:

CREATE USER
ALTER USER
CREATE GROUP
ALTER GROUP

For example:

ALTER USER user1 WITH PASSWORD 'password1';

Please note thatuser passwords cannot be changed in a transaction. ( 7.0.2
)

Laci 1.0

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Rob van der Leek 2000-08-08 13:38:57 Re: Changing user passwords
Previous Message Philip Warner 2000-08-08 06:24:56 Re: Subselect and limit/order?