यह पीएल/एसक्यूएल ब्लॉक (जो किसी अन्य प्रश्न में आपकी टिप्पणी पर आधारित है) एक उपयोगकर्ता के लिए विभाजित तालिकाओं के माध्यम से लूप करता है और उनकी वृद्धिशील वरीयता को सत्य पर सेट करता है।
begin
for a in
(
select distinct (table_name), owner
from all_part_tables
where owner = 'SOME_USER_NAME'
--Ignore objects in the recycle bin.
--There are other "tables" that may need to be ignored,
--such as external tables, storage tables, etc.
and table_name not like 'BIN$%'
order by table_name
) loop
dbms_stats.set_table_prefs(a.owner, a.table_name, 'incremental', 'true');
end loop;
end;
/