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: how to allow User access to Tables

Re: how to allow User access to Tables

From: Rene Nyffenegger <rene.nyffenegger_at_gmx.ch>
Date: 7 Sep 2004 13:40:36 GMT
Message-ID: <slrncjreil.23g.rene.nyffenegger@zhnt60m34.netarchitects.com>


In article <2q5nn9Frl94rU1_at_uni-berlin.de>, Mark wrote:
> hallo NG,
>
> I created a table under User SCOTT. If I make "select * from cat" I see
> these table. fine. Now I created a new User TESTUSER and want him to be able
> to access the table? How do I do this? I tried it with Toad but did not find
> any menu to "connect" users and tables. I gave my TESTUSER all grants SCOTT
> has, but this is not enough.
>
> Thanks and regards
> Mark

As Scott, do

  grant all on cat to TESTUSER;   

As TESTUSER, do   

  select * from scott.cat;

hth,
Rene

-- 
  Rene Nyffenegger
  http://www.adp-gmbh.ch/
Received on Tue Sep 07 2004 - 08:40:36 CDT

Original text of this message

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