Performance Tuning 실행계획 확인하는 방법 explain plan : plan_table에 저장 SCOTT@orcl2> explain plan set statement_id = 'test01' into plan_table for select * from emp where job = 'CLERK'; -- plan 테이블을 식별하기 위한 표시 test01 -- plan_table은 temporary table로 만들어져 있다 SCOTT@orcl2> select * from table(dbms_xplan.display); -- temporary table을 보기 좋게 보여준다. SCOTT@orcl2> @$ORACLE_HOME/rdbms/admin/utlxplan -- SCOTT 유저에 plan_..