Yes, I think I should have used the term "trace"
I will try to describe what we did:
Using the enterprise manager (like dbo), we switched to a session and started tracing
start tracing Enable wait information, bind information
Run an operation on our application, which falls into the database
Complete the trace, run it on the output:
tkprof.prc output2.txt sys = no record = record.txt explain = dbo @ DBINST / PW
What we want to see is "these procedures were called with these parameters." What do we get:
Begin dbo.UPKG_PACKAGENAME.PROC(:v0, :v1, :v2 ...); End; / Begin dbo.UPKG_PACKAGENAME.PROC2(:v0, :v1, :v2 ...); End; / ...
So, we can track the procedures that were called, but we do not get the actual values โโof the parameters, just: v0, etc.
I understand that we did the same as the alter operator, but let us know if that is not the case.
thanks
Clyde source share