Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to check which query or subquery is taking time

725707Aug 4 2010 — edited Aug 4 2010
Oracle 11.0.1.7:

If I have a query already running and want to see which part of query is taking long time then is there a way to look in v$ views the breakdown of each subquery?

for eg:
select * from fil f
   where x in (select * from typ t, typ1 t1 where t.tid = t1.tid and t1.tid = f.tid)
     and  x in (select * from form f where f.fid = t.fid and);
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 1 2010
Added on Aug 4 2010
5 comments
1,838 views