|
How to find most frequently run SQL queries in Oracle
Author: Venkata Sudhakar
Oracle exposes a view called v$sql which gives the performance statistics of the queries being run. We can find most frequently run SQL queries by sorting v$sql view on EXECUTIONS column.
|
|