## 실행계획 보기
explain plan for
select COUNT(*) from TEST
;
select * from table (DBMS_XPLAN.DISPLAY);
## 통계정보생성
exec dbms_stats.gather_table_stats('my','emp');
## 실행계획 보기
explain plan for
select COUNT(*) from TEST
;
select * from table (DBMS_XPLAN.DISPLAY);
## 통계정보생성
exec dbms_stats.gather_table_stats('my','emp');