Can you audit Java class execution?
Oracle EE 12.1.0.2
As part of a general clean up of a legacy application I'm trying to determine what objects are actually in use.
There are some 230 JAVA class objects in my database. I can look at DBA_DEPENDENCIES to see where the dependencies between the java classes exist. I can look at DBA_SOURCE to find what packages include the phrase 'AS LANGUAGE JAVA' to find packages that wrap JAVA classes. I am auditing the execution of all the packages owned by our application schema. But as far as I know you can't audit what procedures are called inside of a package.