-실행계획 생성
explain plan for {쿼리};

-실행계획 보기
select * from table(dbms_xplan.dsiplay);

-statment id 활용
explain plan set statement_id = '{구문이름}' for {쿼리}