ORACLE 重命名数据文件

ORACLE 重命名数据文件

【转载】:http://blog.itpub.net/21754115/viewspace-1152696/

方法1:Alter tablespace data file rename

当数据库处于运行状态,可以选择使用先将数据文件所在表空间置于offline状态,然后移动数据文件并重敏命名数据库文件,最后将表空间置于online状态。

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

step1.  offline operation

alter tablespace userdata offline;

step2. move file in os command

! mv /u01/oradata_old/userdata01.dbf /u02/oradata_new/userdata01.dbf;

step3.  rename operation

alter tablespace userdata 
rename datafile '/u01/oradata_old/userdat01.dbf' 
to '/u02/oradata_new/userdata01.dbf';

step4. reset online

alter tablespace userdata online;

方法2:Alter Database data file rename

这种方法当数据库startup到mount状态的时候应用。

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):

step1. stop db

shutdown immediate;

step2. move file to new place

! mv '/u01/app/oracle/oradata/oldname.dbf' '/u01/app/oracle/oradata/newname.dbf';

step3. mount db

startup mount;

step4. rename datafile

alter database
rename file '/u01/app/oracle/oradata/oldname.dbf' 
to '/u01/app/oracle/oradata/newname.dbf';

step5. open db

alter database open;

 

你可能感兴趣的:(数据库)