创建表

alter table sensitive_items storage (next 1M);
drop index i_sensitive_items;
alter table sensitive_items add constraint pk_sensitive_items primary key (item_no) using index storage (initial 1M next 1M) tablespace ts2;

你可能感兴趣的:(创建表)