Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 

 
 

Oracle rename data file tips

Oracle Database Tips by Donald Burleson


Oracle is the worlds most flexible database and we have many methods for renaming tablespaces and the underlying data files.

In 12c and beyond, it is easy to rename a data file. 

Here is an example of the 12c new feature for a online move of a data file:

alter database move datafile
   '/u01/app/oracle/oradata/cust1.dbf'
to
  '/u01/app/oracle/oradata/cust2.dbf' ;

Database altered.

Tablespace data file rename

We can use the alter tablespace rename datafile command, but the tablespace most be offline and you must re-name the data file while the tablespace is offline:

sqlplus:  ALTER TABLESPACE cust_ts OFFLINE;

linux> mv 'OLDFILE.DBF ' 'NEWFILE.DBF'

sqlplus:  ALTER TABLESPACE
   cust_ts
RENAME datafile     
   '/u01/app/oracle/mysid/oldname.dbf'
TO
   '/u01/app/oracle/mysid/newname.dbf'

Database data file rename

We can also use the alter database rename datafile command, but the data file must be renamed in the OS (using the mv Linux command) while the database is down and the rename data file must be done while the database is un-opened (in the mount stage):

sqlplus:  shutdown;

linux> mv 'OLDFILE.DBF ' 'NEWFILE.DBF'

sqlplus:  startup mount;

sqlplus: ALTER DATABASE
  
RENAME file     
   '/u01/app/oracle/mysid/oldname.dbf'
TO
   '/u01/app/oracle/mysid/newname.dbf'

RMAN data file rename

In RMAN, you can rename a data file like this:
  • SET NEWNAME - This command can be used to rename the data files to be restored to a new location. It is equivalent to the db_file_name_convert parameter of the server initialization parameter file. Combination of the SET NEWNAME and SWITCH command is the equivalent of the ALTER DATABASE RENAME FILE statement.
     
  • CONFIGURE AUXNAME - CONFIGURE AUXNAME is equivalent to the SET NEWNAME command, except that the CONFIGURE AUXNAME is persistent, whereas, the SET NEWNAME command must be used every time the DBA wants to rename a data file. It is necessary to connect to the recovery catalog in order to use the CONFIGURE AUXNAME command.

Renaming data files with soft links

When re-naming raw data files, we use the ln command:

 ln -s - This unlinks the previous file then creates the symbolic link

The -f parameter (--force) when passed to ln it causes it to call the unlink() system call right before symlink()

 ln -sfT /path/to/new/target linkname

 

   
Oracle Training from Don Burleson 

The best on site "Oracle training classes" are just a phone call away! You can get personalized Oracle training by Donald Burleson, right at your shop!

Oracle training
 
 

 


 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster
 
 
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.