2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
DECLARE
l_job number;
BEGIN
dbms_job.submit( job => l_job,
what => 'BEGIN dbms_stats.gather_schema_stats(ownname => ''ADM'', method_opt => ''FOR ALL INDEXED COLUMNS SIZE 1'', cascade => true); END;',
next_date => trunc(sysdate) + 6/24,
interval => 'trunc(sysdate) + 30/24'
);
END;