Question: What
do I do to find the excess capacity of an Oracle server?
I want to do instance consolidation and I need to know how
many instances I can fit onto a single server. What is
the procedure for determining the excess capacity for an
Oracle server?
Answer: To get the excess capacity
for any Oracle server, you must get these three sets of
values:
When this is subtracted from the server actual capacity,
this will give you the excess capacity for each server,
expressed in three values:
- Excess CPU capacity
- Excess RAM
- Excess Network bandwidth
Note: You must be licensed to use the Oracle
diagnostic pack to use this AWR information.
Appendix A:
-- ******************************************************
-- Actual CPU capacity data from dba_hist_osstat
-- ******************************************************
col c1 heading '#|CPUs' format 999
col c2 heading '#|CPU|Cores' format 999
col c3 heading '#|CPU|Sockets' format 999
select
(select max(value) from dba_hist_osstat
where stat_name = 'NUM_CPUS') c1,
(select max(value) from dba_hist_osstat
where stat_name = 'NUM_CPU_CORES') c2,
(select max(value) from dba_hist_osstat
where stat_name = 'NUM_CPU_SOCKETS') c3
from dual;
prompt
prompt ******************************************************
prompt Get server RAM Size
prompt ******************************************************
col c1 heading 'Physical|Memory|MB' format 999,999,999
select
max(value)/1024/1024 c1
from
dba_hist_osstat
where
stat_name = 'PHYSICAL_MEMORY_BYTES';
|
|
|
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.
|
|