Re: permission rejected

From: "paul butler" <paul(at)entropia(dot)co(dot)uk>
To: "A(dot)Bhuvaneswaran" <bhuvansql(at)myrealbox(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: permission rejected
Date: 2003-04-10 11:19:38
Message-ID: 0f3f75624110a43PCOW035M@blueyonder.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Date sent: Thu, 10 Apr 2003 16:17:49 +0530 (IST)
From: "A.Bhuvaneswaran" <bhuvansql(at)myrealbox(dot)com>
To: paul butler <paul(at)entropia(dot)co(dot)uk>
Copies to: pgsql-novice(at)postgresql(dot)org
Subject: Re: [NOVICE] permission rejected

Thanks very much,
This limitation is not clear from anything in the docs and a view
doesn't really solve this problem. But its no big problem.
Cheers
Paul Butler
> > mfx=# GRANT SELECT ON employee(eid,forename,rights) TO
> > GROUP accessor;
>
> Currently, to grant privileges to only few columns, you must create a view
> having the desired columns and then grant privileges to that view.
>
> # create view employee_view as select eid, forename, rights from employee;
> # grant select on employee_view to group accessor;
>
> regards,
> bhuvaneswaran
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message John D. Tiedeman 2003-04-10 13:03:31 Borland dbExpress in Kylix 3 (Delphi for Linux)
Previous Message A.Bhuvaneswaran 2003-04-10 10:47:49 Re: permission rejected