Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: ORACLE PRIVILEGE USE ANOTHER RESSOURCE
Jérôme Perruchas wrote:
>
> Hi,
>
> What privilege a user must have to use ressource of another user ?????
> I have a user DC. This user want use table of another user JP. I am
> connected on DC and for use another table, I write :
> SELECT * FROM JP.unetable ;
> *
> ORACLE say : ORA-00942: table or view does not exist
> But there are not mistake in the name of the table....
> When DC has DBA privilege, Oracle doesn't say any error. But I don't
> want grant DBA privilege at DC but just the privilege for use another
> table. Do you know what privilege is-it ?????
>
> Thanks.
options:
(as owner of table)
grant select on my_table to other_user; grant update on my_table to other_user; grant insert on my_table to other_user; grant delete on my_table to other_user;
You probably also want to have a read on security, roles, synonyms in Server Concepts manual..
HTH --
"Some days you're the pigeon, and some days you're the statue." Received on Thu Aug 05 1999 - 07:17:45 CDT
![]() |
![]() |