메모리 공유가 안되고 있는 리터럴 SQL 확인

 

 

select substr(sql_text, 1, 40) "SQL",
      count(*) cnt,
      sum(executions) "TotExecs",
      sum(sharable_mem) mem,
      min(first_load_time) start_time,
      max(first_load_time) end_time,
      max(hash_value) hash
from v$sqlarea where executions < 2
group by substr(sql_text, 1, 40)
having count(*) > 20
order by 3 desc, 1, 2 ;

사업자 정보 표시
(주)블루원 | 김홍태 | 서울특별시 용산구 원효로 4가 135 금홍 2빌딩 | 사업자 등록번호 : 106-86-76684 | TEL : 02-3272-7200 | Mail : support_ora@blueone.co.kr | 통신판매신고번호 : 호 | 사이버몰의 이용약관 바로가기

'DB - ORACLE > Oracle Command' 카테고리의 다른 글

시간대별 리두 로그 발생 확인 쿼리  (0) 2015.01.19
Listener Log On/Off  (0) 2015.01.19
Oracle DB Whole Dump  (0) 2014.12.22
Invaild Object Complie Script  (0) 2014.12.22
DML Stim Pack  (0) 2014.12.22

+ Recent posts