AntiEarnie
Technical User
Oracle 8.1.7.4.1
Can someone double check me on this? Is there no way to specify what tablespace a new partition is to be created under? I have sifted through the toad knowlege xpert and my oracle 8i complete reference and I can find nothing that says how to avoid the default tablespace for a partitioned table.
For example I have TableA which wants to use TablespaceA through some setting I can not find (does not show in script tab in toad yet shows in OEM). However I want to create my new partition in TablespaceB. The syntax for adding the range partition I have found is this:
Simply adding on a TABLESPACE SomeTablespace to the end does not add the new partition to the tablespace specified, nor does it generate an error.
Is it not possible to specify a tablespace when adding a range partition? If not, is there some way I can change what the default tablespace is for the partitioned table?
I know I can just move the partition after it is created but I would like to stick to one statment if I can.
Can someone double check me on this? Is there no way to specify what tablespace a new partition is to be created under? I have sifted through the toad knowlege xpert and my oracle 8i complete reference and I can find nothing that says how to avoid the default tablespace for a partitioned table.
For example I have TableA which wants to use TablespaceA through some setting I can not find (does not show in script tab in toad yet shows in OEM). However I want to create my new partition in TablespaceB. The syntax for adding the range partition I have found is this:
Code:
ALTER TABLE SomeTable ADD PARTITION SomePartition VALUES LESS THAN (value_list)
Is it not possible to specify a tablespace when adding a range partition? If not, is there some way I can change what the default tablespace is for the partitioned table?
I know I can just move the partition after it is created but I would like to stick to one statment if I can.