본문 바로가기

DB

11강

 

8장 Monitoring and Managing Memory

 

  • 현재 사용되고 있는 SGA 값 할당 현황이다.
  1. select component, current_size/1024/1024 size_mb from v$sga_dynamic_components;
  • parameter
  1. show parameter pga;
  2. show parameter area_size;

 

 

9장 Automatic Performance Management

 

 

 

10장 Managing Schema Objects

 

  • Partitioned table
    • table size가 2G정도 된다면 기본적으로 partitioned table을 고려해본다.
    • partitions 된 부분 부분은 별도의 tablespace에 저장할 수도 있다.
  • Index-Organized Tables
    • 인덱스 구조로 다가 테이블 만들어 버린거(인덱스+데이타)
  • Clusters
    • 요즘 잘 안쓴다고 하네 

 

 

 

 

 

 

 

 

 

 

 

 

 

이 글은 스프링노트에서 작성되었습니다.