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:
- Big Data là gì?
- Q101. Which three actions are performed by the Oracle Preinstallation RPM, oracle-database-serverxxxx- preinstall, for Oracle Grid Infrastructure, where xxxx is the Oracle version and release?
- Cơ chế đồng thuận (Consensus Mechanisms): Proof of Work vs Proof of Stake
- Gather stats Cập nhật thông tin thống kê cho database Oracle
- Implicit And Explicit Data Type Conversion – Chuyển đổi kiểu dữ liệu trong SQL