tags:

views:

23

answers:

1

I need to check the current user's java grants, something similar to what has been set by:

dbms_java.grant_permission('SCOTT','java.net.SocketPermission','*','connect');

Can this be done without system privs from the current account? If I need to do it with system privs, where should I look?

10gR2, if that makes a difference.

+2  A: 

This should show up in the DBA_JAVA_POLICY and USER_JAVA_POLICY views.

dpbradley
just what i needed, thanks!
Mark Harrison