- Gather(통계수집 실행 ) -> ALL(전체) : DBMS_UTILITY.[ANALYZE_DATABASE / ANALYZE_SCHEMA] -> By table(테이블별) : DBMS_STATS.gather_table_stats (ex) exec dbms_stats.gather_table_stats(ownname=> 'HR', tabname => 'DEPT', cascade => TRUE, block_sample=>false , method_opt=>'for all columns size 1', granularity=>'GLOBAL', no_invalidate=> FALSE, estimate_percent => 0.01, degree=>16); - 확인 -> Table : select table_n..