init.ora 파일중 메모리 튜닝에 영향을 주는 파라미터
DB_BLOCK_SIZE :
Size of the blocks (디폴트 2K) 클수록 좋으나 한번 설정하면
변경할 수 없으며, 설정은 H/W에 종속적이다.
SHARED_POOL_SIZE
공유 메모리의 크기를 설정.
LOG_BUFFER - Buffer for uncommitted transactions in memory
SORT_AREA_SIZE
소트작업을 하는 메모리 영역의 크기.
SORT_AREA_RETAINED_SIZE
소트작업이 끝나도 소멸되지 않고 항상 남아있는 최소 소트 메모리 크기.
NLS_DATE_FORMAT
'DD-MON-RR' Used for Y2K?
DBWR_IO_SLAVES (버젼7.x의 DB_WRITERS)
Disk에 쓰기작업을 하는 프로세스의 갯수. 보통 Disk의 갯수만큼 잡아준다.
DB_FILE_MULTIBLOCK_READ_COUNT
DISK에서 한번에 읽어드리는 block 의 수.
OPTIMIZER_MODE - Choose, Rule, First_Rows or All_Rows
LOCK_SGA - Keeps SGA from being pushed out of memory (not all platforms)…Can also lock areas only - V8 ONLY
PRE_PAGE_SGA - Causes all of the SGA pages to be touched and brought into memory
SHARED_POOL_RESERVED_SIZE - Memory held for future big PL/SQL or ORA-error
LARGE_POOL_SIZE - Total blocks in the large pool allocation for large PL/SQL - V8 ONLY
LARGE_POOL_MIN_ALLOC - Min. bytes for large PL/SQL to allocate in shared pool - V8 ONLY
LOG_ARCHIVE_DUPLEX_DEST - Write archives to multiple places
LOG_ARCHIVE_MIN_SUCCEED_DEST - Min. number of archive copies that must succeed
|