Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Newbie:Including other users in my own schema
The second suggestion from Javier Rojas would work, but is really not needed and looses some of the advantages you get by keeping users in their own schema.
Cyril Elkaim wrote:
Hi,Received on Mon May 31 1999 - 06:19:05 CDTIs it possible to intern other users in my own schema. That is, for the
other users, assuming I grant them rights on my tables, to select,
etc... without prefixing the name of my tables with my schema?creator:
create table test (...)
grant all on test to other
other:
select * from test
and not:
select * from creator.testThe reason is that I must modify many, many queries in my application
and I really prefer to avoid that :-)Thanks
Cyril Elkaim
![]() |
![]() |