Blame | Last modification | View Log | Download | RSS feed
create table WS_RAGGRUPPAMENTI_FUNZIONE
(
COD_PROFILO_FUNZ NUMBER(10) not null,
COD_FUNZIONE NUMBER(10) not null
)
tablespace ®MON_TBS_NAME
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table WS_RAGGRUPPAMENTI_FUNZIONE
add constraint PK_WS_RAGGRUPPAMENTI_FUNZIONE primary key (COD_PROFILO_FUNZ, COD_FUNZIONE)
using index
tablespace ®MON_TBS_NAME
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table WS_RAGGRUPPAMENTI_FUNZIONE
add constraint FK_WS_RAGGR_REF_48_WS_PROFI foreign key (COD_PROFILO_FUNZ)
references WS_PROFILI_FUNZIONE (COD_PROFILO_FUNZ) on delete cascade;
alter table WS_RAGGRUPPAMENTI_FUNZIONE
add constraint FK_WS_RAGGR_REF_52_WS_FUNZI foreign key (COD_FUNZIONE)
references WS_FUNZIONI (COD_FUNZIONE);