I have a Java application with JPA and eclipse link
as backend . I had like to find explain plan
of a particular query that gets executed, while the application is running . I know i can check it through sql developer , but i would like to find the explain plan of the query when it is invoked by the application . Is there a way to do it?
I tried adding explain plan for select 1 from dual
but it kept throwing exception.