Subversion Repositories Sigmater

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 Andrea 1
create table WS_ABILITAZIONI_TERMINALE
2
(
3
  COD_TERMINALE    VARCHAR2(30) not null,
4
  COD_PROFILO_FUNZ 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_ABILITAZIONI_TERMINALE
17
  add constraint PK_WS_ABILITAZIONI_TERMINALE primary key (COD_TERMINALE, COD_PROFILO_FUNZ)
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_ABILITAZIONI_TERMINALE
30
  add constraint FK_WS_ABILI_REF_43_AMBW_TER foreign key (COD_TERMINALE)
31
  references WS_TERMINALI (COD_TERMINALE);
32
alter table WS_ABILITAZIONI_TERMINALE
33
  add constraint FK_WS_ABILI_REF_47_WS_PROFI foreign key (COD_PROFILO_FUNZ)
34
  references WS_PROFILI_FUNZIONE (COD_PROFILO_FUNZ);
35