更改Oracle数据文件名字的方法

ZDNet软件频道 时间:2008-08-30 作者: |  我要评论()
本文关键词:方法 文件名字 Oracle Oracle
 本文介绍了在Oracle中移动数据文件时更改数据文件名字的方法,脱机方法为可以移动任何表空间中的数据文件、日志文件,,联机为不可移动system表空间,回滚段和临时表空间中的数据文件。

在论坛上看到一个经常遇到的问题,移动数据文件,收录一下,以后用得到:

  有两种方法可以更改Oracle数据文件的名字,联机方法与脱机方法

  一:脱机(可以移动任何表空间中的数据文件、日志文件,命令为alter database rename file)

  Because the SYSTEM tablespace cannot be taken offline, you must use this method to move data files in the SYSTEM tablespace.

  具体步骤为

      1:$sqlplus “/ as sysdba”
    SQL>shutdown
    2:$mv or move (使用操作系统命令改名字)
    3:$sqlplus “/ as sysdba”
  SQL>startup mount
  SQL>alter database rename file 'xxxxx' to 'xxxxx'


  (注意在alter open之前不要退出)

    4:SQL>alter database open;

  二:联机(不可移动system表空间,回滚段和临时表空间中的数据文件,命令为alter tablespace )

    The following alter tablespace command is applied only to data files in a non-SYSTEM tablespace that does not contain active rollback or temporary segments:

  具体步骤为:

         1:$sqlplus “/ as sysdba”;
  SQL>alter tablespace xxxx offline(如果非归档加drop);
  2:$mv xxxxx xxxxx (用os命令移动数据文件)
  3:SQL>alter tablespace xxxx rename datafile 'xxxx' to 'xxxxx';
  4:SQL>alter tablespace xxxx online;

 


百度大联盟认证黄金会员Copyright© 1997- CNET Networks 版权所有。 ZDNet 是CNET Networks公司注册服务商标。
中华人民共和国电信与信息服务业务经营许可证编号:京ICP证010391号 京ICP备09041801号-159
京公网安备:1101082134