Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
6 | Andrea | 1 | create table WS_TERMINALI |
2 | ( |
||
3 | COD_TERMINALE VARCHAR2(50) not null, |
||
4 | DESCRIZIONE VARCHAR2(200) |
||
5 | ) |
||
6 | tablespace ®MON_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 | alter table WS_TERMINALI |
||
17 | add constraint PK_WS_TERMINALI primary key (COD_TERMINALE) |
||
18 | using index |
||
19 | tablespace ®MON_TBS_NAME |
||
20 | pctfree 10 |
||
21 | initrans 2 |
||
22 | maxtrans 255 |
||
23 | storage |
||
24 | ( |
||
25 | initial 64K |
||
26 | minextents 1 |
||
27 | maxextents unlimited |
||
28 | ); |
||
29 |