oracle11g修改資料檔案路徑

甲骨文技術支援發表於2018-07-25


有時候我們想把資料檔案移動到其他的目錄下,可以按照如下操作:


  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/,如需轉載,請註明出處,否則將追究法律責任。

相關文章