Using 12.6.0.53
I create the following table:
CREATE TABLE test (test_geometry SDO_GEOMETRY)
TABLESPACE data;
Then F4 on the table name, click on the Script tab and I get the following script.
Note, the missing data type.
CREATE TABLE TEST
(
TEST_GEOMETRY
)
COLUMN TEST_GEOMETRY NOT SUBSTITUTABLE AT ALL LEVELS
VARRAY “TEST_GEOMETRY”.“SDO_ELEM_INFO” STORE AS LOB (
ENABLE STORAGE IN ROW
CHUNK 8192
RETENTION
CACHE
LOGGING
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
BUFFER_POOL DEFAULT
FLASH_CACHE DEFAULT
CELL_FLASH_CACHE DEFAULT
))
VARRAY “TEST_GEOMETRY”.“SDO_ORDINATES” STORE AS LOB (
ENABLE STORAGE IN ROW
CHUNK 8192
RETENTION
CACHE
LOGGING
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
BUFFER_POOL DEFAULT
FLASH_CACHE DEFAULT
CELL_FLASH_CACHE DEFAULT
))
TABLESPACE DATA
RESULT_CACHE (MODE DEFAULT)
LOGGING
NOCOMPRESS
NOCACHE
NOPARALLEL
MONITORING;
I don’t know why the database version would matter, but I couldn’t replicate the problem on a 12.1.0.2 database, it only happened on 11.2.0.3.