Subversion Repositories Sigmater

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 Andrea 1
create table WS_RAGGRUPPAMENTI_FUNZIONE
2
(
3
  COD_PROFILO_FUNZ NUMBER(10) not null,
4
  COD_FUNZIONE     NUMBER(10) not null
5
)
6
tablespace &REGMON_TBS_NAME
7
  pctfree 10
8
  initrans 1
9
  maxtrans 255
10
  storage
11
  (
12
    initial 64K
13
    minextents 1
14
    maxextents unlimited
15
  );
16
alter table WS_RAGGRUPPAMENTI_FUNZIONE
17
  add constraint PK_WS_RAGGRUPPAMENTI_FUNZIONE primary key (COD_PROFILO_FUNZ, COD_FUNZIONE)
18
  using index 
19
  tablespace &REGMON_TBS_NAME
20
  pctfree 10
21
  initrans 2
22
  maxtrans 255
23
  storage
24
  (
25
    initial 64K
26
    minextents 1
27
    maxextents unlimited
28
  );
29
alter table WS_RAGGRUPPAMENTI_FUNZIONE
30
  add constraint FK_WS_RAGGR_REF_48_WS_PROFI foreign key (COD_PROFILO_FUNZ)
31
  references WS_PROFILI_FUNZIONE (COD_PROFILO_FUNZ) on delete cascade;
32
alter table WS_RAGGRUPPAMENTI_FUNZIONE
33
  add constraint FK_WS_RAGGR_REF_52_WS_FUNZI foreign key (COD_FUNZIONE)
34
  references WS_FUNZIONI (COD_FUNZIONE);
35