[ORACLE] Direct loading(오라클퍼포먼스튜닝)
·
Database
대용량 Insert시 집에가고싶을때.. Insert into or Insert into ... Select ...(X) insert /*+ append */ into emp nologging select * from emp; (O) insert /*+ PARALLEL(emp, 4) */ into emp nologging select * from emp; (O) 장점 1. Memory 안씀 2. HWM Bumpup 안씀 3. Undo 안씀 Undo에는 각 user들의 transaction의 내용들이 기록(블록 위치) 4. Log ahead 안씀(옵션) 5. 1분당 2GB처리