Is there a way to intercept calls from Oracle Data Provider to the database? I would like to see which procedures are being called and which parameters they are receiving.
I tried with DBMS_MONITOR.DATABASE_TRACE_ENABLE, and then checking the trace files with tkprof, but I can't find the procedure parameter info, it seemes like this is just query related.
Logging inside the procedure is not really an option. In fact I'm trying to log when a procedure is called with a wrong parameter list (and no executed)
If you can point me into the right direction (oracle documentation or anything) I would appreciate it.