[ORACLE] 대랑 Delete 작업시..Direct Loading
Delete -> Insert 1. commit; alter session enable parallel dml; alter session set sort_area_size = 1000000; 2. create table temp_table storage(initial 50m) -- 충분한 extent 할당으로 동적 exent 할당 예방 tablespace another_disk_ts -- 서로 다른 디스크에 저장하여 I/O 분산 nologging -- log양을 최소화시킴 as select * from the_table where 1=2; -- table 정의만 생성 3. insert /*+ parallel(temp_table, 4) */ -- 병렬 direct path loading into temp_..
Database
2009. 6. 13. 11:43
[ORACLE] Direct loading(오라클퍼포먼스튜닝)
대용량 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처리
Database
2009. 6. 13. 10:49
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Oracle
- Windows
- Linux
- select
- table
- Shell
- 자동차
- java
- Toad
- eclipse
- apache
- 테이블
- 파일
- IP
- 서버
- delete
- 설정
- user
- MySQL
- 윈도우
- 오라클
- mssql
- DATABASE
- 리눅스
- server
- sql
- DB
- 데이터
- tomcat
- 백업
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함