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/

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