Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
6 | Andrea | 1 | create table WS_LOGO_ENTE_UTENTE |
2 | ( |
||
3 | ID NUMBER not null, |
||
4 | DESCRIZIONE VARCHAR2(50), |
||
5 | LOGO BLOB |
||
6 | ) |
||
7 | tablespace ®MON_TBS_NAME |
||
8 | pctfree 10 |
||
9 | initrans 1 |
||
10 | maxtrans 255 |
||
11 | storage |
||
12 | ( |
||
13 | initial 64K |
||
14 | minextents 1 |
||
15 | maxextents unlimited |
||
16 | ); |
||
17 | alter table WS_LOGO_ENTE_UTENTE |
||
18 | add constraint ID primary key (ID) |
||
19 | using index |
||
20 | tablespace ®MON_TBS_NAME |
||
21 | pctfree 10 |
||
22 | initrans 2 |
||
23 | maxtrans 255 |
||
24 | storage |
||
25 | ( |
||
26 | initial 64K |
||
27 | minextents 1 |
||
28 | maxextents unlimited |
||
29 | ); |
||
30 |