Good day to all, there is such a table
CREATE TABLE test ( ID NUMBER(*) PRIMARY KEY NOT NULL, NAME VARCHAR2(40) NOT NULL, TEXT VARCHAR2(4000), DATE_CREATE DATE DEFAULT sysdate NOT NULL ) you need to do automatic partitioning on it by the DATE_CREATE column, the interval is one day, so that the next day the new partition is automatically created and therefore it was filled in with data for that day, I heard that this implementation was added to 11g, I tried to figure it out, but it comes to partition ... values less than (..) immediately get lost. My first question, all comments on the question are welcome in order to avoid mistakes in the future.