Does the elapsed_time column in the v$sql table indicate the time per query exeuction or is it a sum of all executions?
Tell me more
×
Database Administrators Stack Exchange is a question and answer site for
database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
|
|
From the 11.2 Database Reference documentation:
Here is a demonstration:
If you need the timing for one execution you could set timing on in an SQL*Plus session, turn on tracing with TIMED_STATISTICS, or add a comment to the SQL so that there is only one execution in v$sql. |
||||
|
|