说,我有以下 DDL:
create table partition_test_table
(
id number(38,0) not null,
value varchar(255),
country_code varchar(2) not null,
creation_date date not null,
constraint pk_partition_test_table primary key (id)
)
partition by range ( creation_date )
subpartition by list ( country_code );
这不起作用,因为它没有声明任何初始分区。如何创建没有初始分区的分区表?这甚至可能吗?
谢谢。