Files
oracle/vdh/gather_table_stats.sql
2026-03-12 21:23:47 +01:00

9 lines
138 B
SQL

begin
dbms_stats.gather_table_stats(
'&owner','&table_name',
degree => 7,
method_opt => '&method_opt'
);
end;
/