Subversion Repositories Sigmater

Rev

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

create table WS_CONF_AGP
(
  ID_PARAMETRO  NUMBER not null,
  COD_PARAMETRO VARCHAR2(256) not null,
  VAL_PARAMETRO VARCHAR2(512) not null
)
tablespace &REGMON_TBS_NAME
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );
alter table WS_CONF_AGP
  add constraint PK_WS_CONF_AGP primary key (ID_PARAMETRO)
  using index 
  tablespace &REGMON_TBS_NAME
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );