Blame | Last modification | View Log | Download | RSS feed
create table WS_EVENTI
(
EVENTO_ID VARCHAR2(30) not null,
DESCRIZIONE VARCHAR2(100)
)
tablespace ®MON_TBS_NAME
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table WS_EVENTI
add constraint PK_WS_EVENTI primary key (EVENTO_ID)
using index
tablespace ®MON_TBS_NAME
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);