반응형
대용량 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)
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처리
반응형
'Database' 카테고리의 다른 글
[ORACLE] /*+ INDEX */ 를 통한 셀렉트 (0) | 2009.06.13 |
---|---|
[ORACLE] 대랑 Delete 작업시..Direct Loading (0) | 2009.06.13 |
[ORACLE] NVL함수 & DECODE함수 (1) | 2009.05.13 |
[MSSQL] UPDATE~SELECT 문의 사용 (0) | 2009.05.13 |
[ORACLE] TO_CHAR 요일값 구하기 (0) | 2009.05.06 |