-
-
Save RichVRed/3b4af223f8e8d4c2cdca09fc97fe20e9 to your computer and use it in GitHub Desktop.
Oracle - How much hard parsing is Oracle performing (https://app.pluralsight.com/library/courses/oracle-performance-tuning-developers/table-of-contents)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Value is in microseconds | |
| -- Run this query at a couple regular intervals and take the delta to get | |
| -- an idea of how much hard parsing is going on | |
| select sn.statistic#, sn.name, s.value | |
| from v$sysstat s, v$statname sn | |
| where s.statistic# = sn.statistic#(+) | |
| and sn.name in ('parse time cpu', 'parse count (hard)'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment