Tips, information and some real-time experiences in Oracle, UNIX
Thursday, August 26, 2010
Library Cache SQL
The following query uses the V$LIBRARYCACHE view to examine the reload ratio in the library cache:
select Sum(Pins) "Hits",
Sum(Reloads) "Misses",
((Sum(Reloads) / Sum(Pins)) * 100)"Reload %"
from V$LibraryCache;
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment