Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: revoking a column

Re: revoking a column

From: John Darrah <jdarrah_at_veripost.net>
Date: Mon, 30 Apr 2001 17:31:03 +0000 (UTC)
Message-ID: <9BAAB192E5938F448EDF31E326507DD20952FE@DENS600>

There may be a built-in command that I don't know about, but I've always used views to accomplish this.
CREATE view foo as select <column list minus the column you don't want seen> from bar
grant select on foo to appuser;
create synonym bar for other_user.foo;

-- 
Posted from [63.83.225.245] 
via Mailgate.ORG Server - http://www.Mailgate.ORG
Received on Mon Apr 30 2001 - 12:31:03 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US