티스토리 뷰
parallel 힌트를 이용한 병렬 처리가 성능 향상에 도움이 많이 되더군요.
전 parallel 이란 스펠링이 잘 생각이 나지 않죠. 가끔 사용할려고 하면 떠오르지 않아
난감할때가 더러 있더라구요. ^^
형식) SELECT /*+ PARALLEL(A 3) */ FROM MEMBER A
The PARALLEL
hint must use the table alias if an alias is specified in the query. The hint can then take two values separated by commas after the table name. The first value specifies the degree of parallelism for the given table, the second value specifies how the table is to be split among the instances of a parallel server. Specifying DEFAULT
or no value signifies that the query coordinator should examine the settings of the initialization parameters (described in a later section) to determine the default degree of parallelism.
In the following example, the PARALLEL
hint overrides the degree of parallelism specified in the emp
table definition:
SELECT /*+ FULL(scott_emp) PARALLEL(scott_emp, 5) */ ename FROM scott.emp scott_emp;
In the next example, the PARALLEL
hint overrides the degree of parallelism specified in the emp
table definition and tells the optimizer to use the default degree of parallelism determined by the initialization parameters. This hint also specifies that the table should be split among all of the available instances, with the default degree of parallelism on each instance.
SELECT /*+ FULL(scott_emp) PARALLEL(scott_emp, DEFAULT,DEFAULT) */ ename FROM scott.emp scott_emp;
- Total
- Today
- Yesterday
- 르세라핌
- Sybase IQ
- 고체 향수
- JMW 헤어드라이기기
- 매직 트랙패드2
- 홈 오피스
- Life Chair
- VARIDESK
- Pixel Pals
- 화분벌레
- 배당급
- 카카오 에드
- 코라나 19
- 별잉 빛나는 밤
- 로니카 BCS
- node.js
- 남설 팔찌
- 빈센트 반 고흐
- 별이 빚나는 밤
- 파나소닉 비데 DL-EH10KWS
- 증권정보포털
- weka
- GKRS
- 유가바이트디비
- 루미큐브 종류
- 솔리드 쿨론
- 브리다 정수기
- yugabyteDB
- 오미크론
- 톡토기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |