Re: change user password - Mailing list pgsql-general

From Berend Tober
Subject Re: change user password
Date
Msg-id 63616.216.238.112.88.1108670930.squirrel@216.238.112.88
Whole thread Raw
In response to change user password  (Hugo Takada <htakada@gmail.com>)
List pgsql-general
> hi, is it possible to change the current user's password from a
> function/stored procedure , I mean,  is there a system function/stored
> procedure to do it? like the dbo.sp_password found in adaptive server
> anywhere.
>


CREATE OR REPLACE FUNCTION public.alter_password(name, name)
  RETURNS "varchar" AS
'
DECLARE
  l_user ALIAS FOR $1;
  l_pwd ALIAS FOR $2;
  CMD VARCHAR;
BEGIN
  CMD := \'ALTER USER "\' || l_user || \'" WITH ENCRYPTED PASSWORD \' ||
\'\'\'\' || l_pwd || \'\'\'\' || \' VALID UNTIL \' || \'\'\'\' ||
CURRENT_DATE+INTERVAL \'30 days\' || \'\'\'\';
  EXECUTE CMD;
  RETURN \'ALTER USER\';
END;
'
  LANGUAGE 'plpgsql' VOLATILE SECURITY DEFINER;


-- Of course, you'ld want to be careful about whom was granted execute
permission on this.

-- BMT


pgsql-general by date:

Previous
From: John Allgood
Date:
Subject: Re: Problems compiling 7.4.6 src rpms
Next
From: "Sailer, Denis (YBUSA-CDR)"
Date:
Subject: CREATE INDEX failing; No space left on device; Database recycling itself