Database/Oracle
실행계획 명령어&통계정보생성
calsifer
2014. 11. 26. 13:41
## 실행계획 보기
explain plan for
select COUNT(*) from TEST
;
select * from table (DBMS_XPLAN.DISPLAY);
## 통계정보생성
exec dbms_stats.gather_table_stats('my','emp');