Subversion Repositories Sigmater

Rev

Blame | Last modification | View Log | Download | RSS feed

create table WS_FUNZIONI
(
  COD_FUNZIONE NUMBER(10) not null,
  COD_GRUPPO_F NUMBER(10),
  DESCRIZIONE  VARCHAR2(100),
  LINK         VARCHAR2(200),
  FLG_MENU     NUMBER(1),
  NOME         VARCHAR2(100),
  FLAG_F       VARCHAR2(1),
  ORDINE       NUMBER(4) default 0,
  PADRE        NUMBER(10) not null
)
tablespace &REGMON_TBS_NAME
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );
alter table WS_FUNZIONI
  add constraint PK_WS_FUNZIONI primary key (COD_FUNZIONE)
  using index 
  tablespace &REGMON_TBS_NAME
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );
alter table WS_FUNZIONI
  add constraint FK_WS_FUNZI_REF_36_WS_GRUPP foreign key (COD_GRUPPO_F)
  references WS_GRUPPI_FUNZIONE (COD_GRUPPO_F)
  disable;
create index WS_FUNZIONI_ORDINE on WS_FUNZIONI (ORDINE)
  tablespace &REGMON_TBS_NAME
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );
create index WS_FUNZIONI_PADRE on WS_FUNZIONI (PADRE)
  tablespace &REGMON_TBS_NAME
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );
grant select on WS_FUNZIONI to &MONIT_USER_NAME;