View Single Post

   
  #2 (permalink)  
Old 02-24-2008, 03:37 AM
anacedent
 
Posts: n/a
Default Re: Java permissions

Jeremy wrote:

> On Oracle 8i, by default, java permissions can only be granted by SYS it
> seems - what prviliege or role wouldi have to grant to a user to enable
> that user to be able to grant java permissions?
>
> If it makes any difference, the specific grants I wish to be able to
> make from the non-SYS user is
>
> java.io.FilePermission
>
> and I want the user to be able to grant this permission to itself.
>
> Is this doable?
>
> cheers
>
>

HUH?
>I want the user to be able to grant this permission to itself

This statement make little to no sense.

"permissions" are granted by the schema (owner) on objects
they own to either ROLES or other schemas.

GRANT EXECUTE ON java.io.FilePermission TO <SCHEMA_NAME OR ROLE>;
Reply With Quote