Subversion Repositories Sigmater

Rev

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

create table WS_FILTRI
(
  COD_FILTRO  NUMBER(10) not null,
  DESCRIZIONE VARCHAR2(100),
  VALORE      VARCHAR2(100),
  FLG_TIPO    CHAR(1)
)
tablespace &REGMON_TBS_NAME
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );
alter table WS_FILTRI
  add constraint PK_WS_FILTRI primary key (COD_FILTRO)
  using index 
  tablespace &REGMON_TBS_NAME
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );