Re: Database owner can't select

From: "Kevin Galligan" <mailinglists(at)kgalligan(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Database owner can't select
Date: 2006-04-14 17:46:52
Message-ID: e7dad8010604141046r56ab093en519fa2a4730b6396@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I think I was confusing owner of database and owner of each object. I
assumed if you owned the database you could do what you wanted with the
tables in the database.

Assumptions are bad.

Thanks for the response.

On 4/14/06, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>
> "Kevin Galligan" <mailinglists(at)kgalligan(dot)com> writes:
> > set up and I can log in as that user. I've set the owner of the simple
> > database to that user with 'ALTER DATABASE [db] OWNER TO [user]', and
> this
> > user shows up as the owner with '\l+'. Yet, I can't do anything with
> the
> > database as that user.
>
> Ownership of a database doesn't imply much except the right to drop the
> DB as a whole. In particular, it has essentially nothing to do with
> privileges on pre-existing objects within the database.
>
> > However, from what I can gather from reading this...
> > http://www.postgresql.org/docs/8.1/interactive/privileges.html
> > the owner should be able to do this kind of stuff without explicitly
> adding
> > privs.
>
> Where do you get that from? It's certainly not the intended meaning.
>
> Perhaps what you want to do is also ALTER OWNER on each
> table/function/etc within the database.
>
> regards, tom lane
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message hubert depesz lubaczewski 2006-04-14 18:37:48 Re: corrupted item pointer:???
Previous Message Tom Lane 2006-04-14 17:34:24 Re: Database owner can't select