Blame | Last modification | View Log | Download | RSS feed
create table WS_ABILITAZIONI_TERMINALE
(
COD_TERMINALE VARCHAR2(30) not null,
COD_PROFILO_FUNZ NUMBER(10) not null
)
tablespace ®MON_TBS_NAME
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table WS_ABILITAZIONI_TERMINALE
add constraint PK_WS_ABILITAZIONI_TERMINALE primary key (COD_TERMINALE, COD_PROFILO_FUNZ)
using index
tablespace ®MON_TBS_NAME
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table WS_ABILITAZIONI_TERMINALE
add constraint FK_WS_ABILI_REF_43_AMBW_TER foreign key (COD_TERMINALE)
references WS_TERMINALI (COD_TERMINALE);
alter table WS_ABILITAZIONI_TERMINALE
add constraint FK_WS_ABILI_REF_47_WS_PROFI foreign key (COD_PROFILO_FUNZ)
references WS_PROFILI_FUNZIONE (COD_PROFILO_FUNZ);