Subversion Repositories Sigmater

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 Andrea 1
create table WS_FUNZIONI
2
(
3
  COD_FUNZIONE NUMBER(10) not null,
4
  COD_GRUPPO_F NUMBER(10),
5
  DESCRIZIONE  VARCHAR2(100),
6
  LINK         VARCHAR2(200),
7
  FLG_MENU     NUMBER(1),
8
  NOME         VARCHAR2(100),
9
  FLAG_F       VARCHAR2(1),
10
  ORDINE       NUMBER(4) default 0,
11
  PADRE        NUMBER(10) not null
12
)
13
tablespace &REGMON_TBS_NAME
14
  pctfree 10
15
  initrans 1
16
  maxtrans 255
17
  storage
18
  (
19
    initial 64K
20
    minextents 1
21
    maxextents unlimited
22
  );
23
alter table WS_FUNZIONI
24
  add constraint PK_WS_FUNZIONI primary key (COD_FUNZIONE)
25
  using index 
26
  tablespace &REGMON_TBS_NAME
27
  pctfree 10
28
  initrans 2
29
  maxtrans 255
30
  storage
31
  (
32
    initial 64K
33
    minextents 1
34
    maxextents unlimited
35
  );
36
alter table WS_FUNZIONI
37
  add constraint FK_WS_FUNZI_REF_36_WS_GRUPP foreign key (COD_GRUPPO_F)
38
  references WS_GRUPPI_FUNZIONE (COD_GRUPPO_F)
39
  disable;
40
create index WS_FUNZIONI_ORDINE on WS_FUNZIONI (ORDINE)
41
  tablespace &REGMON_TBS_NAME
42
  pctfree 10
43
  initrans 2
44
  maxtrans 255
45
  storage
46
  (
47
    initial 64K
48
    minextents 1
49
    maxextents unlimited
50
  );
51
create index WS_FUNZIONI_PADRE on WS_FUNZIONI (PADRE)
52
  tablespace &REGMON_TBS_NAME
53
  pctfree 10
54
  initrans 2
55
  maxtrans 255
56
  storage
57
  (
58
    initial 64K
59
    minextents 1
60
    maxextents unlimited
61
  );
62
grant select on WS_FUNZIONI to &MONIT_USER_NAME;
63