dbms_stats.gather_schema_stats的前期准备

上一篇 / 下一篇  2008-03-27 16:35:03 / 个人分类:Oracle

    There has been many discussion on the differences between analyze command and dbms_stats package on the internet.In this article ,my point is what should be done before gathering statistics. To prevent optimizer from choosing the bad plan after collecting the statistics,the original statistics should be saved!

 

step 1 : create a table to store the current statistics

       

      exec dbms_stats.create_stat_table(ownname=>'scott',stattab=>'stat_table');

 

step 2 : gather the statistics and save the original statistics as follows:

 

      begin

      dbms_stats.gather_schema_stats(

             ownname => 'test',

             options => 'GATHER',                        --Gathers statistics on all objects in the schema

             estimate_percent => dbms_stats.auto_sample_size,

             method_opt => 'all indexed columns size auto', --default 'FOR ALL COLUMNS SIZE AUTO'

             cascade => true, --this option is equivalent to running GATHER_INDEX_STATS procedure on each index

             statown => 'scott',

             stattab => 'stat_table'

             );

      end;

 

step 3 :

      If the user believes that the new statistics are causing the optimizer to generate poor plans,

      then the original statistics can be restored as follows:

 

      begin

             dbms_stats.delete_schema_stats(ownname => 'test');

             dbms_stats.import_schema_stats(

                    ownname => 'test',

                    statown => 'scott',

                    stattab => 'stat_table'

             );

      end;


TAG:

 

评分:0

我来说两句

显示全部

:loveliness: :handshake :victory: :funk: :time: :kiss: :call: :hug: :lol :'( :Q :L ;P :$ :P :o :@ :D :( :)

日历

« 2008-12-05  
 123456
78910111213
14151617181920
21222324252627
28293031   

数据统计

  • 访问量: 6960
  • 日志数: 481
  • 图片数: 3
  • 文件数: 1
  • 建立时间: 2008-01-05
  • 更新时间: 2008-11-20

RSS订阅

Open Toolbar