Database Administration (MOSC)

MOSC Banner

Default tablespace different than partitions

edited Jul 22, 2013 12:41PM in Database Administration (MOSC) 4 commentsAnswered
The default tablespace of the owner is users.  A partitioned table was created, but only the tablespace for the partitions was specified, so the base table has a different tablespace than the partitions.  This causes errors when splitting the the overflow partition.  Can the default tablespace be changed without dropping and re-creating the table?  Below are the basics of the table create.  The DB is 11gR2.
create table owner.tableA
(field1 number
,field2 number
,field3 date);
partition by range (field3)
 (PARTITION "PRT_20130521"  VALUES LESS THAN (TO_DATE(' 2013-06-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN')) SEGMENT CREATION IMMEDIATE

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center