1. 監控事例的等待
select event,sum(decode(wait_time,0,0,1)) "prev",
sum(decode(wait_time,0,1,0)) "curr",count(*) "tot"
from v$session_wait
group by event order by 4;
2. 回滾段的爭用情況
select name, waits, gets, waits/gets "ratio"
from v$rollstat a, v$rollname b
where a.usn = b.usn;
3. 監控表空間的 i/o 比例
select df.tablespace_name name,df.file_name "file",f.phyrds pyr,
f.phyblkrd pbr,f.phywrts pyw, f.phyblkwrt pbw
from v$filestat f, dba_data_files df
where f.file# = df.file_id
order by df.tablespace_name;
4. 監控檔案系統的 i/o 比例
select substr(a.file#,1,2) "#", substr(a.name,1,30) "name",
a.status, a.bytes, b.phyrds, b.phywrts
from v$datafile a, v$filestat b
where a.file# = b.file#;
5.在某個使用者下找所有的索引
select user_indexes.table_name, user_indexes.index_name,uniqueness, column_name
from user_ind_columns, user_indexes
where user_ind_columns.index_name = user_indexes.index_name
and user_ind_columns.table_name = user_indexes.table_name
order by user_indexes.table_type, user_indexes.table_name,
user_indexes.index_name, column_position;
6. 監控 sga 的命中率
select a.value + b.value "logical_reads", c.value "phys_reads",
round(100 * ((a.value+b.value)-c.value) / (a.value+b.value)) "buffer hit ratio"
from v$sysstat a, v$sysstat b, v$sysstat c
where a.statistic# = 38 and b.statistic# = 39
and c.statistic# = 40;
7. 監控 sga 中字典緩衝區的命中率
select parameter, gets,getmisses , getmisses/(gets+getmisses)*100 "miss ratio",
(1-(sum(getmisses)/ (sum(gets)+sum(getmisses))))*100 "hit ratio"
from v$rowcache
where gets+getmisses <>0
group by parameter, gets, getmisses;
8. 監控 sga 中共享快取區的命中率,應該小於1%
select sum(pins) "total pins", sum(reloads) "total reloads",
sum(reloads)/sum(pins) *100 libcache
from v$librarycache;
select sum(pinhits-reloads)/sum(pins) "hit radio",sum(reloads)/sum(pins) "reload percent"
from v$librarycache;
9.表空間碎片整理
1,指定pctincrease不為0,則系統自動相鄰自由盤區空間合併
2,如果pctincrease為0,則系統不會自動實現相鄰自由盤區空間合併,
但是可以使用oracle命令 alter tablespace ***x coalesce,強制
相鄰自由盤區空間合併.但是該命令不能合併被資料盤區分割的自由
盤區.3,如果想徹底的合併所有的自由空間,只有對該錶空間施行匯出匯入.以
重新分配資料盤區
10,重組表(使用move 命令可以減少行遷移,優化效能)
可以刪除舊表,複製資料,建立新錶
alter table *** move
tablespace new_tbs
storage (initial xxm next xm pctincrease 0)
pctfree 0 pctused 50
initrans 2 nologging;
幾個檢查資料庫效能的SQL語句
posted on 2006 03 15 01 42 xu jianxiang 幾個常用的sql語句 1 檢查低效率的語句 select executions disk reads buffer gets round buffer gets disk reads buffer gets,2 hit ...
五 效能監視(6)資料庫審核
一 sql server審核 sql server 審核 物件收集單個伺服器例項或資料庫級操作和操作組以進行監視。這種審核處於 sql server 例項級別。每個 sql server 例項可以具有多個審核。二 建立審核 1.新建審核 2.啟用審核 三 建立審核規範 1.伺服器審核規範 您可以為每...
五 效能監視(6)資料庫審核
一 sql server審核 sql server 審核 物件收集單個伺服器例項或資料庫級操作和操作組以進行監視。這種審核處於 sql server 例項級別。每個 sql server 例項可以具有多個審核。二 建立審核 1.新建審核 2.啟用審核 三 建立審核規範 1.伺服器審核規範 您可以為每...