Purpose: Automatically add new partitions when adding a new text value.
Situation: There are records, in one field of which there is a repeating text value. A partition has been created on this field in the target table for this data. The value of this field can come in a new value, which is not present in the existing partitions. An error occurs due to the lack of a corresponding section. By the list, these partitions cannot be done in the way that the values that can come are not known in advance.
Question: Is it possible for this case to organize the automatic addition of the necessary sections? Without a trigger, only the means of organizing the table.
Something like this (a made-up example):
create table char_part ( id integer, txt varchar2(200) ) partition by range (txt) interval (1) -- Проблема в автодобавлении нового текст. значения ( partition "abc" values less than ('abc'), partition "max" values less than (maxvalue) -- Для null - значений )