Commit ca0aecfd authored by Alvaro Herrera's avatar Alvaro Herrera

Add example showing how to remove a password from a role.

Andreas Scherbaum
parent c0cf5c37
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_role.sgml,v 1.9 2007/09/03 18:46:29 tgl Exp $ $PostgreSQL: pgsql/doc/src/sgml/ref/alter_role.sgml,v 1.10 2008/04/30 12:38:49 alvherre Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -217,6 +217,14 @@ ALTER ROLE davide WITH PASSWORD 'hu8jmn3'; ...@@ -217,6 +217,14 @@ ALTER ROLE davide WITH PASSWORD 'hu8jmn3';
</programlisting> </programlisting>
</para> </para>
<para>
Remove a role's password:
<programlisting>
ALTER ROLE davide WITH PASSWORD NULL;
</programlisting>
</para>
<para> <para>
Change a password expiration date, specifying that the password Change a password expiration date, specifying that the password
should expire at midday on 4th May 2015 using should expire at midday on 4th May 2015 using
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment