Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Patitioned table
CREATE TABLE adr
(adrnr number(5),
name varchar2(50))
STORAGE (INITIAL 100K NEXT 50K) LOGGING
PARTITION BY RANGE (adrnr)
(PARTITION VALUES LESS THAN ( 8 ) TABLESPACE ts1,
PARTITION VALUES LESS THAN ( 10 ) TABLESPACE ts2);
Now my question:
It is possible to compare letters??
Steph Received on Thu Jun 04 1998 - 07:32:38 CDT
![]() |
![]() |