블로그 이미지
lahuman

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

05-21 03:36

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
  • total
  • today
  • yesterday
2007. 1. 16. 12:28 DBMS/오라클

■ 파일 설명

 ▲ 메모리 관련

   - Library cache : lib_hit.sql (hit 가 90% 이상 이여야 함 )

   - Dictionary cache : lib_reload.sql ( reload 1% 이하 이여야 함 )

   - Data buffer cache : databuffer_hit.sql ( hit 가 90% 이상 이여야 함 - OLTP 환경 )


 ▲ I/O 관련

  - I/O가 집중 되는 data file 검색 : files_io.sql

  - full table scan 시 4block 을 초과해서 read 한 횟수 : fullscan_log.sql


 ▲ Data buffer cache

   - 병목 현상 유무를 확인 : databuffer_wait.sql

   - hit ratio 계산 : databuffer_hit.sql

   - 영역별 hit ratio 계산 : databuffer_multi_hit.sql

   - recycle 영역 Size를 결정 : databuffer_recycle_size.sql


 ▲ Redo log buffer

   - writing 여부, 시간, 상태 검색 : logbuffer_wait.sql

   - redo log file 쪽의 문제로 발생한 wait 검색 : logbuffer_file_wait.sql

   - DBWN, CKPT 쪽의 문제로 발생한 wait 검색 : logbuffer_process_wait.sql

   - ARCN 쪽의 문제로 발생한 wait 검색 : logbuffer_arcn_wait.sql


▲ OSS

   - dispatcher 의 경합 : dispatcher_busy.sql

   - serverprocess 의 경합 : shared_server_busy.sql


▲ SORT

   - Sort ( Memory )  : Sort ( Dist )  : sort_mem_disk.sql

   - 메모리 part 의 Sort 정보 : sort_usage.sql

   - Disk part 의 Sort 정보 : sort_segment.sql


▲ Storage tuning

   -  사용자가 직접 extent를 할당하고자 할때, 할당해야 할 대상을 검색 : extent_empty_block.sql

      ( 동적 할당을 안하고 직접 할당하고자 할때, 할당 대상을 찾음)

   - table 과 사용자의 이름을 입력하면 해당 table의 chaining 정보를 보여줌 : table_detect_chaining.sql

   - index 의 사용 빈도 검사

     검사 시작 : index_monitor_usage.sql

     검사 결과 보기 : index_used.sql

     검사 종료 : index_nomonitor_usage.sql

'DBMS > 오라클' 카테고리의 다른 글

오라클 암호화  (0) 2008.11.27
IMPORT  (0) 2007.01.16
데이터 사전 정보 조회  (0) 2007.01.16
우편번호 테이블 만들기  (0) 2007.01.16


posted by 알 수 없는 사용자