:::::::::::::: テーブル作成時の DDL ::::::::::::::
create table test_tbl_1 (
configuration ( estimated count is 10 ),
c0 numeric (9) not null primary key,
c1 char(255),
c2 char(255),
);
commit work;
::: 使用するボリュームを変更する alter table文 :::
alter table test_tbl_1 (
configuration ( add volume to use ( vol_2 ))
);
commit work;
|