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: sharing same tablespace , can't see table of other user?

Re: sharing same tablespace , can't see table of other user?

From: Guido Konsolke <gk61_at_gmx.net>
Date: Fri, 6 Sep 2002 08:12:42 +0200
Message-ID: <1031292253.58880@news.thyssen.com>

Hi Eugene,

it is ORACLE's expected behaviour. Only the owner of a table has access to it until he decides to grant privileges to other users. So if you want user2
to be able to select data from a table 'test' owned by user1 you have to issue a command (connected as user1) like: GRANT select ON test TO user1.

And keep in mind that user2 has to qualify the tablename with the schema when
trying to access it:
SELECT * FROM user2.test.

This can be avoided by generating a synonym.

hth,
Guido Received on Fri Sep 06 2002 - 01:12:42 CDT

Original text of this message

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