Im trying to set up some audit in our database to figure out which functions/procedures we use but have come to a stop when trying to audit the executions of my individual functions inside my packages.
I can set up audit for various functions,procedures and packages with
audit execute on [procedure] by access;
audit execute on [function] by access;
audit execute on [package] by access;
BUT what I also need is the individual objects inside the package something like
audit execute on [package.function] by access;
audit execute on [package.procedure] by access;
When executing something in a package the dba_audil_trail just show me that the package has been executed not the actual function inside the package.