Question: How does the procedure
dbms_shared_pool.markhot work?
Answer: The
dbms_shared_pool.markhot procedure is new in 11g r2 and
marks a library cache object as a "hot" object in an attempt
to reduce "mutex contention" wait events in Oracle 11g r2
and beyind.
There is also dbms_shared_pool.unmarkhot
procedure to unmark the hot object in the library cache.
See MOSC Note 727400.1 titled "WAITEVENT:
"library cache: mutex X" for additional details on using
the markhot and unmarkhot procedures.
Here is an example of using the dbms_shared_pool markhot
procedure. This is ud in a database startup trigger,
just like
dbms_shared_pool_keep.
exec
dbms_shared_pool.markhot('SYS','DBMS_APPLICATION_INFO',1);
Oracle guru Andrey S. Nikolaev notes that
dbms_shared_pool.markhot is related to a hidden
parameter _kgl_hot_object_copies:
By default, Oracle created approximately
"number of CPU Cores" hot objects copies. This observation
should be further investigated.
You can adjust this number by
_kgl_hot_object_copies parameter. Therefore if you prefer
not to use hidden parameters, the dbms_shared_pool.markhot()
can help you to resolve mutex contention.
|
|
|
Oracle Training from Don Burleson
The best on site
"Oracle
training classes" are just a phone call away! You can get personalized Oracle training by Donald Burleson, right at your shop!

|
|
|
|
|
Burleson is the American Team

Note:
This Oracle
documentation was created as a support and Oracle training reference for use by our
DBA performance tuning consulting professionals.
Feel free to ask questions on our
Oracle forum.
Verify
experience!
Anyone
considering using the services of an Oracle support expert should
independently investigate their credentials and experience, and not rely on
advertisements and self-proclaimed expertise. All legitimate Oracle experts
publish
their Oracle
qualifications.
Errata?
Oracle technology is changing and we
strive to update our BC Oracle support information. If you find an error
or have a suggestion for improving our content, we would appreciate your
feedback. Just
e-mail:
and include the URL for the page.
Copyright © 1996 - 2020
All rights reserved by
Burleson
Oracle ®
is the registered trademark of Oracle Corporation.
|
|