Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Different user can't see the otherones tables
Tablespace does not control what a user can see and cannot see. In your case, the owner of the table has to grant select (and other privileges) to the other users. Also if you want the other users to access these tables with out schema extensions, you can use synonyms
SVRMGR> connect a/a
Connected.
SVRMGR> create table tab1 (a int, b int);
Statement processed.
SVRMGR> insert into tab1 values (1,2);
1 row processed.
SVRMGR> insert into tab1 values (1,2);
1 row processed.
SVRMGR> insert into tab1 values (1,2);
1 row processed.
SVRMGR> commit
Statement processed.
SVRMGR> connect b/b
Connected.
SVRMGR> select * from tab1;
select * from tab1
*
ORA-00942: table or view does not exist
SVRMGR> connect a/a
Connected.
SVRMGR> grant select on tab1 to b;
Statement processed.
SVRMGR> connect b/b
Connected.
SVRMGR> select * from tab1;
select * from tab1
*
ORA-00942: table or view does not exist
SVRMGR> select * from a.tab1;
A B
---------- ----------
1 2 1 2 1 2
1 2 1 2 1 2
> Hi there!
>
> I want different users to work on the same tables.
> Anybody should see the tables of anybody. Therefore, I created a
> Tablespace and set it as the default Tablespace for every user.
>
> Nevertheless, every user can only see its own tables.
> What's wrong?
>
> Thanks,
> Dirk
Received on Tue Feb 08 2000 - 10:50:48 CST
![]() |
![]() |