반응형
select table_name,total_phys_io
from ( select owner||'.'||object_name as table_name,
sum(value) as total_phys_io
from v$segment_statistics
where owner!='SYS' and object_type='TABLE'
and statistic_name in ('physical reads','physical reads direct',
'physical writes','physical writes direct')
group by owner||'.'||object_name
order by total_phys_io desc)
where rownum <=30;
반응형
'Database > ORACLE' 카테고리의 다른 글
오라클 강제 제거하는 방법 (0) | 2009.03.07 |
---|---|
오라클 설치시 발생할수 있는 오류 해결방법 (0) | 2009.03.07 |
DESC 를 SELECT로 구현 (0) | 2009.03.07 |
SQL Loader 사용법 및 요점정리 (0) | 2009.03.06 |
SQLLDR 세부 설정 및 사용하기 (0) | 2009.03.06 |