Files
oracle/vdh/gather_table_stats.sql

9 lines
138 B
MySQL
Raw Normal View History

2026-03-12 21:23:47 +01:00
begin
dbms_stats.gather_table_stats(
'&owner','&table_name',
degree => 7,
method_opt => '&method_opt'
);
end;
/