Link to home
Start Free TrialLog in
Avatar of sakthikumar
sakthikumar

asked on

I Want to know which DB procedure / package is called in java code when running a java Application

I Wanted to know which DB procedure / package is called in java code when running a java Application.

I am running a java application which calls backend procedures / packages.

Is there any way to get the name of the procedure / package that is called in java code?

Can I able to find out in v$sql... or some other views?
Avatar of Gerwin Jansen
Gerwin Jansen
Flag of Netherlands image

You can monitor the sessions with for example SQL Devoper and observe the last statement executed, this can be a single statement or a procedure call. What are you looking for exactly?
ASKER CERTIFIED SOLUTION
Avatar of Sean Stuber
Sean Stuber

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sakthikumar
sakthikumar

ASKER

I dont know which procedure/package is called.

I will try with trace sessions.

But any v$views available, through which I can find out?
if you don't see it in v$sql, then no, not really

do you have your procedures intrumented?
if not, it's never too late to start.
Just curious: how did you solve the issue?