Export partitioned tables without storage information

Bert Gombos

Member²
When exporting tables without "Include storage" option, tablespace clause remains in partitioned table definitions.

create table something
(...)
partition by hash (col1)
(
partition p1
TABLESPACE TBS1
(...)
)
 
Back
Top