Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Rename a datafile
Bookmark Fixed font Go to End
Doc ID: Note:115424.1
Type: BULLETIN
Status: PUBLISHED
Content Type: TEXT/PLAIN
Creation Date: 18-JUL-2000
Last Revision Date: 27-APR-2001
PURPOSE In many situations, a datafile or logfile must be renamed inside Oracle. Whereas the contents of the file remain valid, you need to define a new physical name or location for it. For example:
SCOPE & APPLICATION This bulletin gives instructions to:
I. RENAME OR MOVE DATAFILE(S) WITH THE DATABASE OPEN II. RENAME AND OR MOVE DATAFILE(S) WITH THE DATABASE SHUT DOWN III. RENAME AND OR MOVE A LOGFILE
How to Rename or Move Datafiles and Logfiles:
NOTE: To rename or relocate datafiles in the SYSTEM tablespace you must use
option II, 'Renaming or Moving a Datafile with the Database Shut Down',
because you cannot take the SYSTEM tablespace offline.
I. RENAME OR MOVE DATAFILE(S) WITH THE DATABASE OPEN
Datafiles can be renamed or moved while the database is open. However, the
tablespace must be made READ-ONLY. This will allow users to select from the
tablespace, but prevents them from doing inserts, updates, and deletes. The
amount of time the tablespace is required to be read only will depend on how
large the datafile(s) are and how long it takes to copy the datafile(s) to
the
new location.
Making the tablespace read only freezes the file header, preventing updates from being made to the file header. Since this datafile is then at a read only state, it is possible to copy the file while the database is open.
To do this you must follow these steps:
SVRMGR> SELECT FILE_NAME, STATUS FROM DBA_DATA_FILES WHERE TABLESPACE_NAME = '<YOUR_TABLESPACE_NAME>';
2. Make sure that all datafiles returned have the status AVAILABLE.
3. Make the tablespace is read only.
SVRMGR> ALTER TABLESPACE <YOUR_TABLESPACE_NAME> READ ONLY;
4. Make sure that the tablespace is defined as read only in the data
dictionary.
SVRMGR> SELECT TABLESPACE_NAME, STATUS FROM DBA_TABLESPACES WHERE TABLESPACE_NAME = '<YOUR_TABLESPACE_NAME>'; TABLESPACE_NAME STATUS ------------------------------ --------- <YOUR_TABLESPACE_NAME> READ ONLY
5. Copy the datafile(s) to the new location using the operating system copy
command. Once the datafile(s) have been copied to the new location compare
the sizes of the datafiles. Make sure that the sizes match.
6. Once the datafiles have been copied to the new location alter the
tablespace offline.
SVRMGR> ALTER TABLESPACE <YOUR_TABLESPACE_NAME> OFFLINE;
SVRMGR> ALTER DATABASE RENAME FILE
'/FULL_PATH_OF_OLD_LOCATION/AND_DATAFILE_NAME.DBF'
TO
'/FULL_PATH_OF_NEW_LOCATION/AND_DATAFILE_NAME.DBF';
* You will need to do this for all datafiles associated with this tablespace.
8. Once the alter database statement has been processed for the datafile(s)
you can bring the tablespace online.
SVRMGR> ALTER TABLESPACE YOUR_TABLESPACE_NAME ONLINE; 9. After you bring the tablespace back online you can make the tablespace
read/write again.
SVRMGR> ALTER TABLESPACE YOUR_TABLESPACE_NAME READ WRITE;
SVRMGR> ALTER DATABASE BACKUP CONTROLFILE TO TRACE; This will produce a readable copy of the contents of your controlfile which will be placed in your user_dump_dest directory.
II. RENAME AND OR MOVE DATAFILE(S) WITH THE DATABASE SHUT DOWN
SVRMGR> STARTUP MOUNT This command will read the control file but will not mount the datafiles.
4. Rename the file inside Oracle.
SVRMGR> ALTER DATABASE RENAME FILE
'/FULL_PATH_OF_OLD_LOCATION/AND_DATAFILE_NAME.DBF'
TO
'/FULL_PATH_OF_NEW_LOCATION/AND_DATAFILE_NAME.DBF';
Do this for all the datafiles that were renamed or moved at the operating system level.
5. Open the database.
SVRMGR> ALTER DATABASE OPEN; 6. Query v$dbfile to confirm that the changes made were correct.
SVRMGR> SELECT * FROM V$DBFILE; 7. Remove the datafile(s) from the old location at the operating system level.
III. RENAME AND OR MOVE A LOGFILE
SVRMGR> STARTUP MOUNT 4. Rename the file.
SVRMGR> ALTER DATABASE RENAME FILE
'/FULL_PATH_OF_OLD_LOCATION/AND_REDO_LOG_NAME.LOG'
TO
'/FULL_PATH_OF_NEW_LOCATION/AND_REDO_LOG_NAME.LOG';
5. Open the database.
SVRMGR> ALTER DATABASE OPEN; 6. Remove the logfile(s) from the old location at the operating system level.
Search Words:
ORA-1157 ORA-1116 ORA-1110 .
Copyright (c) 1995,2000 Oracle Corporation. All Rights Reserved. Legal Notices and Terms of Use.
-----Original Message-----
LaCascio
Sent: Wednesday, January 30, 2002 5:05 PM
To: Multiple recipients of list ORACLE-L
Okay, I don't have the manuals with me and can't for the life of me remember the correct syntax to do this...
Is it:
shutdown database
startup no noumt (or startup mount)
alter tablesapce evisions
rename datafile '/full_path/file_name' to '/full_path/new_name';
I'm on 8.1.6 and this complains saying the database isn't open.
It can't be open to rename a datafile...
Thanks,
Joe
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Joe LaCascio INET: jlacasci_at_wheatonma.edu Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: ksmith2_at_myfirstlink.net Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Wed Jan 30 2002 - 20:51:15 CST
![]() |
![]() |