Subversion Repositories Sigmater

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 Andrea 1
create table WS_SERVIZI
2
(
3
  NOME_SERVIZIO VARCHAR2(50) not null,
4
  LIMITE_MAX    NUMBER(6) not null
5
)
6
tablespace &REGMON_TBS_NAME
7
  pctfree 10
8
  initrans 1
9
  maxtrans 255
10
  storage
11
  (
12
    initial 64K
13
    minextents 1
14
    maxextents unlimited
15
  );
16