oracle11g修改数据文件路径


有时候我们想把数据文件移动到其他的目录下,可以按照如下操作:


  1.  查看数据文件位置

SQL>  select file_name from sys.dba_data_files;
FILE_NAME
--------------------------------------------------------------------------------
/home/app/oracle/oradata/orahq/users01.dbf
/home/app/oracle/oradata/orahq/undotbs01.dbf
/home/app/oracle/oradata/orahq/sysaux01.dbf
/home/app/oracle/oradata/orahq/system01.dbf

  2.关机并启动到mount状态

SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount;
ORACLE instance started.
Total System Global Area 2.1379E+10 bytes
Fixed Size		    2262656 bytes
Variable Size		 1677724032 bytes
Database Buffers	 1.9663E+10 bytes
Redo Buffers		   36073472 bytes
Database mounted.
3.执行修改
SQL> alter database rename file   '/home/app/oracle/oradata/orahq/users01.dbf'   to   '/alidata1/oradata/orahq/users01.dbf';
Database altered.
SQL> alter database rename file   '/home/app/oracle/oradata/orahq/undotbs01.dbf'   to   '/alidata1/oradata/orahq/undotbs01.dbf';
Database altered.
SQL> alter database rename file   '/home/app/oracle/oradata/orahq/sysaux01.dbf'   to   '/alidata1/oradata/orahq/sysaux01.dbf';
Database altered.
SQL> alter database rename file   '/home/app/oracle/oradata/orahq/system01.dbf'   to   '/alidata1/oradata/orahq/system01.dbf';
Database altered.


4.启动数据库

SQL> alter database open;
Database altered.


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/20893244/viewspace-2158739/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/20893244/viewspace-2158739/

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值