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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Move system, temp and undotbs1?

RE: Move system, temp and undotbs1?

From: Hollis, Les <Les.Hollis_at_ps.net>
Date: Fri, 1 Apr 2005 08:16:21 -0600
Message-ID: <D44DCE7BBC084E4C9E2DA87EC75E8DE347D9D7@pscdalpexch02.perotsystems.net>


Surendra is correct.

The datafiles are NOT opened in mount state. The Controlfile gets read in MOUNT state. Oracle doesn't even check the existence of the datafiles until it tries to OPEN.

With the DB in MOUNT state, use the "alter databae rename datafile 'oldname' to 'mewname' >This AFTER you (as wad advised) cp the file to the new location.

You do NOT have to recreate the controlfile.

To change maxdatafiles, maxlogmembers, etc you would need to recreate.....

-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Surendra.Tirumala_at_ky.gov
Sent: Friday, April 01, 2005 8:07 AM
To: cichomitiko_at_gmail.com; cemail_219_at_hotmail.com Cc: oracle-l_at_freelists.org
Subject: RE: Move system, temp and undotbs1?

You can move the system and undo tablespaces too.... in mount stage...

Surendra Tirumala
Database Administrator
Division of Technology Services
Education Cabinet
Commonwealth of Kentucky
Ph: (502) 564-6949x380
Surendra.Tirumala_at_ky.gov

-----Original Message-----
From: cichomitiko gmail [mailto:cichomitiko_at_gmail.com] Sent: Friday, April 01, 2005 8:44 AM
To: cemail_219_at_hotmail.com; oracle-l_at_freelists.org Subject: Re: Move system, temp and undotbs1?

You cannot move the system tablespace, you have to re-create the =3D control=3D20
files to change the system data file's path.



=3D


To move the temp tablespace:

create tablespace temp1 datafile 'new_mount_point_data_file_name' size =
=3D

<n>;

then ...

alter user <username> temporary tablespace temp1; --> for the users =3D that=3D20
have temporary tablespace temp!

then ...

drop tablespace temp including contents and datafiles;



=3D


To move the undo tablespace:

create undo tablespace undotbs2 datafile =3D 'new_mount_point_data_file_name'=3D20
size <n>;

alter system set undo_tablespace=3D3Dundotbs2;

drop tablespace undotbs1 including contents and datafiles;



=3D


Cheers
Dimitre

> How do you move the system, temp and undotbs1 from one mount point to > another? I was able to move other tablespaces, but I know you can't =
=3D

take

> system, etc. offline?   This is a 10g database.
>
> Thanks.
>
> _________________________________________________________________
> Don=3D92t just search. Find. Check out the new MSN Search!
> http://search.msn.click-url.com/go/onm00200636ave/direct/01/
>
> --
> http://www.freelists.org/webpage/oracle-l=3D20

--
http://www.freelists.org/webpage/oracle-l
--
http://www.freelists.org/webpage/oracle-l

--
http://www.freelists.org/webpage/oracle-l
Received on Fri Apr 01 2005 - 09:17:49 CST

Original text of this message

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