Connor and Chris will both be at AI World from October 12 to October 17 , the premier Oracle conference of 2025. If you're in Vegas, please come say Hi or pop into our sessions
Thanks for the question, George.
Asked: February 04, 2008 - 2:22 pm UTC
Last updated: December 29, 2008 - 3:57 pm UTC
Version: 10.2.0.3
Viewed 10K+ times! This question is
sys%ORA10GR2> exec dbms_scheduler.disable( 'GATHER_STATS_JOB' ); PL/SQL procedure successfully completed. sys%ORA10GR2> exec dbms_scheduler.set_attribute_null('gather_stats_job','schedule_name'); PL/SQL procedure successfully completed. sys%ORA10GR2> exec DBMS_SCHEDULER.SET_ATTRIBUTE ( name => 'GATHER_STATS_JOB', attribute => 'repeat_interval', value => 'freq=daily;byday=FRI,SAT;byhour=20;byminute=0; bysecond=0'); PL/SQL procedure successfully completed. sys%ORA10GR2> exec dbms_scheduler.enable( 'GATHER_STATS_JOB' ); PL/SQL procedure successfully completed.
George fu, February 05, 2008 - 4:36 pm UTC
Megala, February 05, 2008 - 5:42 pm UTC
A reader, February 05, 2008 - 9:35 pm UTC
A reader, December 29, 2008 - 2:04 pm UTC
ops$tkyte%ORA10GR2> select dbms_stats.get_param( 'estimate_percent' ) from dual; DBMS_STATS.GET_PARAM('ESTIMATE_PERCENT') ------------------------------------------------------------------------------- DBMS_STATS.AUTO_SAMPLE_SIZE
Check out more PL/SQL tutorials on our LiveSQL tool.
PL/SQL reference manual from the Oracle documentation library