1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
1) Dictionary 통계정보를 저장 & 관리할 table을 생성한다. exec dbms_stats.create_stat_table('SYSTEM','mystats'); 2) Dictionary 통계를 수집한다. exec dbms_stats.gather_dictionary_stats(stattab=>'mystats',statid=>'DAY',statown=>'SYSTEM'); 3) Dictionary 통계정보를 load한다. exec dbms_stats.import_dictionary_stats(stattab=>'mystats',statid=>'DAY'); |