일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 인터페이스구현
- mapper
- DB
- 요구사항확인
- 1단원
- 통합구현
- Database
- 정보처리기사
- 제이쿼리
- 자바스크립트
- spring
- 자바
- backend
- 5단원
- 정처기실기
- Java
- 정처기필기
- 데이터베이스
- 리눅스
- javascript
- 정보처리기사필기
- 정처기
- 스프링
- 오라클
- 실기
- Linux
- mybatis
- jQuery
- 4단원
- 정보처리기사실기
- Today
- Total
세라공원
[Database] Conventional Path load / Direct Path load 본문
Conventional Path Load (기존 경로 로드)
A conventional path load executes SQL INSERT statements to populate tables in an Oracle database.
기존 경로 로드(Conventional Path Load)는 SQL INSERT 문을 실행하여 Oracle 데이터베이스의 테이블을 채웁니다.
The conventional path calls Oracle once for each array of rows to process a SQL INSERT statement.
기존 경로(Conventional Path Load)는 SQL INSERT 문을 처리하기 위해 각 행 배열에 대해 Oracle을 한 번 호출합니다.
Direct Path Load (직접 경로 로드)
A direct path load eliminates much of the Oracle database overhead by formatting Oracle data blocks
and writing the data blocks directly to the database files.
직접 경로 로드(Direct Path Load)는 Oracle 데이터 블록을 형식화하고 데이터 블록을 데이터베이스 파일에 직접 기록함으로써 Oracle 데이터베이스 오버헤드의 상당 부분을 제거합니다.
The direct path method calls on Oracle to lock tables and indexes at the start of the load
and releases them when the load is finished.
직접 경로 방법(Direct Path Load)은 로드 시작 시 테이블과 인덱스를 잠그고 로드가 완료되면 해제하도록 Oracle을 호출합니다.
'Database' 카테고리의 다른 글
[Oracle] Window에서 Oracle 11g 완벽 삭제 (레지스트리) (0) | 2022.11.09 |
---|---|
[Database] OLTP / OLAP (0) | 2022.10.27 |