たとえば、次の 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 );
初期パーティションを宣言しないため、これは機能しません。初期パーティションなしでパーティション分割されたテーブルを作成するにはどうすればよいですか? それは可能ですか?
ありがとう。