오렌지를 쓰다가 plan tool 이라는게 있어서 시험해 봤는데..
해석을 못하겠습니다.
클럽엔 실행계획을 보여주고 튜닝을 위해 성능분석을 할 수있다 라고 되있는데.
구체적인 예시의 설명은 없네요(제가 못찾은 거 일수도 ㅡ,.ㅡ ) 만약 좋은 예제 아시면 추천부탁드립니다.
다음은 책(대용량db솔류션~)에 나와있는 예제 인데 도통 이해가 안갑니다;;; 주석좀 부탁드립니다 ^^
Rows
0 select statement
124 nested loops
4218 nested loops
4218 Nested loops
4253 Table Access(by rowid) of 'Item_mst'
9621 index(range scan)of 'item_m_idx1' (non
unique)
83212 Table Access(by rowid) of 'item_mov'
243209 index(range scan scan) of 'item_v_pk'(unique)
4218 Table Access (by rowid) of 'vendor'
4218 index(unique scan) of 'vendor_pk' (unique)
4218 Table Access(by rowid) of 'dept'
4218 index (unique scan) of 'dept_pk'(unique)
쿼리는
select
from item_mst m, item_mov v, vendor a, dept d
where m.item_cd = v.item_cd
and a.vendor = v.manufacture
and d.deptno = v.act_dept
and m.category = :b1
and m.pma like :b2
and v.pattern = :b3
and v.mov_date between :b4 and :b5
and d.location = :b6
이런 식인데, 앞의 rows에 대한 설명 해주시면 감사하겠습니다 ~!