ORACLE 重新命名資料檔案
oracle datafile rename 可以採用下述兩種方法:
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/CENHELP/userdata1.dbf /u02/oradata/CENHELP/userdata01.dbf
step3. rename operation
alter tablespace userdata rename datafile '/u01/oradata/CENHELP/userdata1.dbf' to /u02/oradata/CENHELP/userdata01.dbf'
step4. reset online
alter tablespace userdata online
2. Alter Database data file rename
這種方法當資料庫處於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/mysid/oldname.dbf' '/u01/app/oracle/mysid/newname.dbfF'
step3. mount db
sqlplus: startup mount;
step4. rename datafile
ALTER DATABASE
RENAME file
'/u01/app/oracle/mysid/oldname.dbf'
TO
'/u01/app/oracle/mysid/newname.dbf'
step5. open db
alter database open
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/21754115/viewspace-1152696/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 重新命名資料檔案
- Oracle 在mount狀態下重新命名資料檔案Oracle
- oracle10g data guard(dg)__主庫重新命名資料檔案_在備庫上同步重新命名資料檔案Oracle
- git重新命名檔案和資料夾Git
- DG備援資料檔案重新命名
- oracle 12c 新特性之一:線上重新命名資料檔案Oracle
- oracle 12c R1 可以線上對資料檔案重新命名或者移動資料檔案位置Oracle
- 重新命名資料檔案和表空間
- 12c pdb線上移動資料檔案或者重新命名資料檔案
- Oracle12C新特性-線上重新命名遷移資料檔案(一)Oracle
- Oracle 11g R2之物理Dataguard 重新命名資料檔案Oracle
- 重新命名與遷移聯機資料檔案
- Oracle 資料檔案回收Oracle
- 使用Python批量重新命名資料夾中的檔案Python
- Oracle 12C 新特性之線上重新命名、遷移活躍的資料檔案Oracle
- oracle資料庫移動資料檔案、日誌檔案和控制檔案Oracle資料庫
- oracle9204(9i)_dg(data guard)_重新命名主庫資料檔案_指南_轉摘官檔Oracle
- oracle 線上rename資料檔案Oracle
- Oracle 刪除資料檔案Oracle
- oracle 資料檔案遷移Oracle
- 收縮Oracle資料檔案Oracle
- oracle刪除資料檔案Oracle
- oracle 關於-資料檔案Oracle
- oracle資料檔案遷移Oracle
- ORACLE移動資料檔案Oracle
- ORACLE 收縮資料檔案Oracle
- oracle資料檔案大小限制Oracle
- 不能重新命名檔案及不能刪除檔案和資料夾許可權設定
- 12C關於CDB、PDB線上移動資料檔案、線上重新命名資料檔案的操作說明
- Oracle12c新特性(1)線上重新命名檔案和遷移檔案Oracle
- C# 重新命名檔案C#
- liunx常用命令-rm(移動檔案/資料夾、重新命名)
- data gurad物理備份方式下重新命名資料檔案
- oracle中移動控制檔案、資料檔案、日誌檔案Oracle
- Oracle資料檔案和臨時檔案的管理Oracle
- 重新命名一千個檔案要多久? Name Mangler 快速為大量檔案重新命名
- oracle資料庫的配置檔案Oracle資料庫
- oracle 資料檔案offlineOracle