Blame | Last modification | View Log | Download | RSS feed
create table WS_RAGGR_ENTI
(
ID_RAGGR NUMBER not null,
DESCRIZIONE VARCHAR2(1000),
TIPO_UTENTE NUMBER
)
tablespace ®MON_TBS_NAME
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table WS_RAGGR_ENTI
add constraint PK_RAGGR_ENTI primary key (ID_RAGGR)
using index
tablespace ®MON_TBS_NAME
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
grant select on WS_RAGGR_ENTI to &MONIT_USER_NAME;