Re: How to GRANT rights to modify a table ??? - Mailing list pgsql-general

From Tom Lane
Subject Re: How to GRANT rights to modify a table ???
Date
Msg-id 6474.1252771236@sss.pgh.pa.us
Whole thread Raw
In response to Re: How to GRANT rights to modify a table ???  (Raymond O'Donnell <rod@iol.ie>)
Responses Re: How to GRANT rights to modify a table ???  (Denis BUCHER <dbucherml@hsolutions.ch>)
Re: How to GRANT rights to modify a table ???  (Denis BUCHER <dbucherml@hsolutions.ch>)
List pgsql-general
"Raymond O'Donnell" <rod@iol.ie> writes:
> On 12/09/2009 16:44, Denis BUCHER wrote:
>> ERROR: must be the owner of the mytable relation

> The clue is in the error message :-) .... GRANTing ALL doesn't make them
> the owner of the object as well.

> For that, you have to do something like
>   ALTER TABLE mytable OWNER TO mycolleague;

What might be more practical is to create a group role that actually
owns the table, and make everyone who needs to do this sort of thing
a member of that group.

    CREATE ROLE mytable_owner;
    ALTER TABLE mytable OWNER TO mytable_owner;
    GRANT mytable_owner TO myself, mycolleague, ... ;

I highly recommend reading the GRANT command reference page.

            regards, tom lane

pgsql-general by date:

Previous
From: Raymond O'Donnell
Date:
Subject: Re: How to GRANT rights to modify a table ???
Next
From: Grant Maxwell
Date:
Subject: primary keys