Re: Pgscript : error creating a user with a variable as the password

From: plop plop <mr_weetos(at)hotmail(dot)com>
To: <guillaume(at)lelarge(dot)info>
Cc: <pgadmin-support(at)postgresql(dot)org>
Subject: Re: Pgscript : error creating a user with a variable as the password
Date: 2012-03-19 08:43:29
Message-ID: DUB101-W53F5801E6E6E58CB34619190420@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-support


Hi,

I am wondering why I haven't tried that...

Thanks a lot, that works well.

VP

> Date: Sun, 18 Mar 2012 09:40:43 +0100
> From: guillaume(at)lelarge(dot)info
> To: mr_weetos(at)hotmail(dot)com
> CC: pgadmin-support(at)postgresql(dot)org
> Subject: Re: [pgadmin-support] Pgscript : error creating a user with a variable as the password
>
> Le 16/03/2012 14:23, plop plop a écrit :
> > Hi all,
> >
> > This is a problem about creating a user with a password thanks to a
> > pgscript (pgadmin 1.14.1). I have searched a while around the internent,
> > but I have found no solution so far.
> >
> > The following script does not work ("error near « password»". Pgadmin is
> > in French, so i do not know how the warning exactly looks like in English) :
> >
> > declare @USER, @PASS;
> > set @USER='user';
> > set @PASS='password';
> >
> > CREATE ROLE @USER LOGIN NOSUPERUSER INHERIT NOCREATEDB NOCREATEROLE
> > PASSWORD @PASS;
> >
> >
> > Whereas this one does :
> >
> > declare @USER;
> > set @USER='user';
> >
> > CREATE ROLE @USER LOGIN NOSUPERUSER INHERIT NOCREATEDB NOCREATEROLE
> > PASSWORD 'password';
> >
> >
> > What am I doing wrong with the @PASS variable ?
> >
>
> You need to add quotes around it, this way:
>
> CREATE ROLE @USER LOGIN NOSUPERUSER INHERIT NOCREATEDB NOCREATEROLE
> PASSWORD '@PASS';
>
>
> --
> Guillaume
> http://blog.guillaume.lelarge.info
> http://www.dalibo.com
>
> --
> Sent via pgadmin-support mailing list (pgadmin-support(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgadmin-support

In response to

Browse pgadmin-support by date

  From Date Subject
Next Message MattK 2012-03-19 19:26:43 Re: Server status hanging on OS X
Previous Message David Greco 2012-03-18 16:25:43 Re: Debugger off by one line