Thread: 7.3 how remove password valid until

7.3 how remove password valid until

From
alban
Date:
How remove a password validity ?


CREATE USSER xxxxx WITH VALID UNTIL 'uuuuuu'
ALTER USSER xxxxx WITH VALID UNTIL 'uuuuuu'
but how remove password valid until ?

Thank
Alban







Re: 7.3 how remove password valid until

From
Bruce Momjian
Date:
alban wrote:
> How remove a password validity ?
> 
> 
> CREATE USSER xxxxx WITH VALID UNTIL 'uuuuuu'
> ALTER USSER xxxxx WITH VALID UNTIL 'uuuuuu'
> but how remove password valid until ?

I think you have to specify the data as 'infinity'.
test=> CREATE USER xxxxx WITH VALID UNTIL '2005-01-01';CREATE USERtest=> ALTER USER xxxxx WITH VALID UNTIL
'infinity';ALTERUSER
 

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
359-1001+  If your life is a hard drive,     |  13 Roberts Road +  Christ can be your backup.        |  Newtown Square,
Pennsylvania19073
 


Re: 7.3 how remove password valid until

From
alban
Date:
Bruce Momjian wrote:

> I think you have to specify the data as 'infinity'.
> 
> test=> CREATE USER xxxxx WITH VALID UNTIL '2005-01-01';
> CREATE USER
> test=> ALTER USER xxxxx WITH VALID UNTIL 'infinity';
> ALTER USER
> 

Thank You
Alban