問:怎樣才能正確計算oracle資料庫表空間的利用率?
答:具體示例**如下:
select upper(f.tablespace_name) "表空間名",
d.tot_grootte_mb "表空間大小(m)",
d.tot_grootte_mb - f.total_bytes "已使用空間(m)",
to_char(round((d.tot_grootte_mb - f.total_bytes)
/ d.tot_grootte_mb * 100,
2),'990.99') "使用比",
f.total_bytes "空閒空間(m)",
f.max_bytes "最大塊(m)"
from (select tablespace_name,
round(sum(bytes) / (1024 * 1024), 2) total_bytes,
round(max(bytes) / (1024 * 1024), 2) max_bytes
from sys.dba_free_space
group by tablespace_name) f,
(select dd.tablespace_name,
round(sum(dd.bytes) / (1024 * 1024), 2) tot_grootte_mb
from sys.dba_data_files dd
group by dd.tablespace_name) d
where d.tablespace_name = f.tablespace_name
order by 4 desc
oracle 表空間利用率的查詢
查詢表空間使用情況 select upper f.tablespace name 表空間名 d.tot grootte mb 表空間大小 m d.tot grootte mb f.total bytes 已使用空間 m to char round d.tot grootte mb f.total b...
查詢表空間利用率
查詢表空間利用率 考慮自增長情況,此處利用率考慮的是相對於閥值的表空間利用率 select a.tablespace name,total m free shortnum m free,total free shortnum m as used,round free shortnum total 1...
計算IO裝置 CPU利用率
一 題目 二 解題步驟 在乙個單cpu的處理機中,有p1,p3,p5三個作業,有兩個io裝置io1,io2,並且能夠實現搶先式多工並行工作的多道程式環境中,投入執行優先順序由高到低p5,p1,p3三個作業,他們使用裝置的先後順序和占用裝置的時間分別為 p1 io2 10ms cpu 10ms io1...