Help.....
I'm trying to create table while enforcing
storage extents. Please take a look and tell me
what I'm doing wrong. This is my first at storage
manipulation. The example was taken form an SQL
handbook (SAMS to be specific). Note: I noticed that
the script had an unaccompanied "(" and "}".
SQL> create table ssa02
2 (status varchar2(2),
3 ssan varchar2(9),
4 name varchar2(22),
5 dod varchar2(8),
6 dob varchar2(8),
7 state varchar2(2),
8 zip1 varchar2(5),
9 zip2 varchar2(5))
10 storage
11 (initial extent 100M
12 next extent 20M
13 minextents 1
14 maxextents 121
15 pctincrease 0};
(initial extent 100M
*
ERROR at line 11:
ORA-02218: invalid INITIAL storage option value
****************************************************
*****found err mesage with copernic ****
ORA-02218 invalid INITIAL storage option value
Cause: The specified value must be an integer.
Action: Specify an appropriate integer value and try again
I'm trying to create table while enforcing
storage extents. Please take a look and tell me
what I'm doing wrong. This is my first at storage
manipulation. The example was taken form an SQL
handbook (SAMS to be specific). Note: I noticed that
the script had an unaccompanied "(" and "}".
SQL> create table ssa02
2 (status varchar2(2),
3 ssan varchar2(9),
4 name varchar2(22),
5 dod varchar2(8),
6 dob varchar2(8),
7 state varchar2(2),
8 zip1 varchar2(5),
9 zip2 varchar2(5))
10 storage
11 (initial extent 100M
12 next extent 20M
13 minextents 1
14 maxextents 121
15 pctincrease 0};
(initial extent 100M
*
ERROR at line 11:
ORA-02218: invalid INITIAL storage option value
****************************************************
*****found err mesage with copernic ****
ORA-02218 invalid INITIAL storage option value
Cause: The specified value must be an integer.
Action: Specify an appropriate integer value and try again