Find session with high DISK IO
select p.spid, s.sid,s.process cli_process, s.status,t.disk_reads, s.last_call_et/3600 last_call_et_Hrs,
s.action,s.program,lpad(t.sql_text,30) "Last SQL"
from v$session s, v$sqlarea t,v$process p
where s.sql_address =t.address and
s.sql_hash_value =t.hash_value and
p.addr=s.paddr and
t.disk_reads > 1000
order by t.disk_reads desc;
Thay disk_reads bằng tham số mà bạn muốn tìm
Xem thêm:
- Q107 View the Exhibit and examine the description of the tables
- SQL Access Advisor Oracle Database | Tối ưu hiệu năng Oracle Database với SQL Access Advisor
- Q35 Which two statements are true about the Automatic Diagnostic Repository (ADR)?
- Q105 You start your database instance in NOMOUNT state. Which two actions are performed?
- Keepalived là gì?
