Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: 2 Object Placement Questions...

Re: 2 Object Placement Questions...

From: Nevin Hahn <nhahn_at_evoke.com>
Date: Thu, 17 Aug 2000 19:17:48 GMT
Message-ID: <399C3A5E.B4DEFB5F@evoke.com>

Chris,

You could do a:

create table tab2
tablespace tabspace
storage ( initial 8K next 8K pctincrease 0 ) as
select * from tab1;

where tab1 is in the initial tablespace and tab2 is now in tabspace. Then you could:

alter table tab2 rename to tab1;

This is another method of reorganizing a table with different storage parameters!

Nevin Hahn
Evoke Communications
nhahn_at_evoke.com

Chris England wrote:

> 1. Can you move tables/objects from one tablespace to another? (Not
> referring to selecting the data out of the existing table, dropping the
> table, recreating it on another tablespace, then sqlloading it) I'd like to
> be able to do this using SQL if possible.
>
> 2. Can you/how do you move redo logs. I would like to move the redo logs
> from their current locations in order to reduce possible i/o contention.
>
> Thanks!
Received on Thu Aug 17 2000 - 14:17:48 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US