Re: GRANT all to a super user

From: Andrew Gould <andrewlylegould(at)gmail(dot)com>
To: "Gauthier, Dave" <dave(dot)gauthier(at)intel(dot)com>
Cc: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: GRANT all to a super user
Date: 2009-05-27 14:30:34
Message-ID: d356c5630905270730v5ce401a4ic1b209d2b5992927@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, May 27, 2009 at 9:19 AM, Gauthier, Dave <dave(dot)gauthier(at)intel(dot)com>wrote:

> What is the (is there a) grant command that I can use to create a super
> user without having to specify all the DB objects?
>
> grant all on database foo to thesuper;
>
> and
>
> grant all privileges on database foo to thesuper;
>
> Don’t work.
>
> I know I can achieve what I want by submitting a grant for each and every
> object in the DB. But is there a way to do it all with one command, maybe
> something like...
>
> “grant all privileges on *everything* to thesuper” ?
>
> Thanks
>
> -dave
>

There is a '-s' option for createuser that designates the user account as a
superuser.

You can use 'alter user' or 'alter role' to give superuser authority to an
existing account:

alter user [account name] with superuser;

I think the superuser role applies to all databases.

Andrew

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Emanuel Calvo Franco 2009-05-27 14:33:29 Re: How to Install Postgres 8.3 in Solaris 10 as a service
Previous Message Pavel Stehule 2009-05-27 14:27:34 Re: GRANT all to a super user