Oracle ? 10.1, Oracle , , ( , , , ~ 15%), . , , , .
DBMS_STATS , DBMS_JOB ( DBMS_SCHEDULER), . ETL
BEGIN
dbms_stats.gather_table_stats(
ownname => <<schema name>>,
tabname => <<table name>>
);
END;
DECLARE
l_jobno INTEGER;
BEGIN
dbms_job.submit(
l_jobno,
'BEGIN dbms_stats.gather_table_stats( ''<<schema name>>'', ''<<table name>>'' ); END;',
sysdate + interval '1' minute
);
END;