to_char(start_date,'yy/mm/dd hh24')
order by
server_name,
to_char(start_date,'yy/mm/dd hh24')
;
ttitle 'page_scan > 1|may indicate overloaded memory|whenever unix performs a page-in, the ram memory | on the server has been exhausted and swap pages are being used.';
select
server_name,
to_char(start_date,'yy/mm/dd hh24') my_date,
avg(running_queue) c2,
avg(kbytes_page_in) c3,
avg(kbytes_page_out) c4,
avg(user_cpu) c5,
avg(system_cpu) c6,
avg(idle_cpu) c7
from
perfstat.stats$vmstat
where
page_scan > 1
and start_date > sysdate-&1
group by
server_name,
to_char(start_date,'yy/mm/dd hh24')
order by
server_name,
to_char(start_date,'yy/mm/dd hh24')
;
ttitle 'user+system cpu > 70%|indicates periods with a fully-loaded cpu subssystem.|periods of 100% utilization are only a | concern when runqueue values exceeds the number of cps on the server.';
select
server_name,
to_char(start_date,'yy/mm/dd hh24') my_date,
avg(running_queue) c2,