Gather stats for a table
BEGIN DBMS_STATS.GATHER_TABLE_STATS ( ownname => 'SCOTT', tabname => 'TEST', cascade => true, ---- For collecting stats for respective indexes method_opt=>'for all indexed columns size 1', granularity => 'ALL', estimate_percent =>dbms_stats.auto_sample_size, degree => 8); END; /
oracle configurationintermediate
by OracleDba
14 views