Dictionary Statistics 통계 생성방법
1) Dictionary 통계정보를 저장 & 관리할 table을 생성한다.
exec dbms_stats.create_stat_table('SYSTEM','mystats');
2) Dictionary 통계를 수집한다.
exec dbms_stats.gather_dictionary_stats(stattab=>'mystats',statid=>'DAY',statown=>'SYSTEM');
3) Dictionary 통계정보를 load한다.
exec dbms_stats.import_dictionary_stats(stattab=>'mystats',statid=>'DAY');
사업자 정보 표시
(주)블루원 | 김홍태 | 서울특별시 용산구 원효로 4가 135 금홍 2빌딩 | 사업자 등록번호 : 106-86-76684 | TEL : 02-3272-7200 | Mail : support_ora@blueone.co.kr | 통신판매신고번호 : 호 | 사이버몰의 이용약관 바로가기
'DB - ORACLE > Oracle Command' 카테고리의 다른 글
다량의 audit file 지우는 방법 (0) | 2015.08.24 |
---|---|
Unix 시스템별 사양을 알아내는 명령 (0) | 2015.08.24 |
PGA 사용량 확인 하는 쿼리 (0) | 2015.08.24 |
ADRCI를 이용해 ORA 메시지 추출하기 (0) | 2015.06.03 |
Rawdevice 에서 Filesystem 으로 데이터파일 변환하는 방법 (0) | 2015.04.21 |