Subversion Repositories Sigmater

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 Andrea 1
create table WS_GRUPPI_FUNZIONE
2
(
3
  COD_GRUPPO_F     NUMBER(10) not null,
4
  NOME_GRUPPO      VARCHAR2(100),
5
  DESCRIZIONE      VARCHAR2(100),
6
  COD_APPLICAZIONE NUMBER(10),
7
  ORDINE           NUMBER(4) default 0
8
)
9
tablespace &REGMON_TBS_NAME
10
  pctfree 10
11
  initrans 1
12
  maxtrans 255
13
  storage
14
  (
15
    initial 64K
16
    minextents 1
17
    maxextents unlimited
18
  );
19
alter table WS_GRUPPI_FUNZIONE
20
  add constraint PK_WS_GRUPPI_FUNZIONE primary key (COD_GRUPPO_F)
21
  using index 
22
  tablespace &REGMON_TBS_NAME
23
  pctfree 10
24
  initrans 2
25
  maxtrans 255
26
  storage
27
  (
28
    initial 64K
29
    minextents 1
30
    maxextents unlimited
31
  );
32
alter table WS_GRUPPI_FUNZIONE
33
  add constraint FK_WS_APP_REF foreign key (COD_APPLICAZIONE)
34
  references WS_APPLICAZIONI (COD_APPLICAZIONE);
35