Hi

Operating System VMS Version of Oracle 8.1.7

I know how to RUN OS commands from Unix and NT using the example by Tom Kyte however we are working on VMS and here I am not sure what privs I should grant the user to run any OS Command from PL SQL ON VMS .

For example

Begin
dbms_java.grant_permission
(USER,
'java.io.FilePermission',
'XYZ', - I am not sure what path I should set here .
'execute');
dbms_java.grant_permission
(USER,
'java.lang.RuntimePermission',
'*',
'writeFileDescriptor' );

End;


Any help would be appreciated .

Cheers
Afshin