修改資料庫檔名字和路徑
1.普通資料檔案
alter database datafile '/u02/fmsprd/fmsprddatasystem01.dbf' offline;
mv fmsprddatasysaux01.dbf sysaux01.dbf
alter database rename file '/u02/fmsprd/fmsprddatasysaux01.dbf' to '/u02/fmsprd/fmsprddata/sysaux01.dbf';
recover datafile '/u02/fmsprd/fmsprddata/sysaux01.dbf';
alter database datafile '/u02/fmsprd/fmsprddata/sysaux01.dbf' online;
需要歸檔模式,因為需要對資料檔案進行恢復。
2.undo tablespace
create undo tablespace undotbs2 datafile '/u02/fmsprd/fmsprddata/undotbs02.dbf'size 100M autoextend off;
alter system set undo_tablespace='UNDOTBS2' scope=both ;
alter tablespace undotbs1 offline normal;
drop tablespace undotbs1 including contents and datafiles ;
shutdown immediate;
startup;
3 temporary tablespace
create temporary tablespace pstemp TEMPFILE '/u02/fmsprd/fmsprddata/pstemp01.dbf 'size 200M;
alter database default temporary tablespace pstemp;
drop tablespace temp including contents and datafiles ;
4.移動system表空間下的資料檔案。
shutdown immediate;
startup mount;
mv fmsprddatasystem01.dbf system01.dbf
alter database rename file '/u02/fmsprd/fmsprddatasystem01.dbf' to '/u02/fmsprd/fmsprddata/system01.dbf';
alter database open;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23757700/viewspace-752101/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- CentOS修改Mariadb資料庫檔案儲存路徑CentOS資料庫
- 【Oracle】如何修改資料檔案和日誌檔案的路徑Oracle
- 修改Oracle資料檔名及資料檔案存放路徑Oracle
- Sqlserver資料庫儲存路徑的修改SQLServer資料庫
- oracle11g修改資料檔案路徑Oracle
- oracle 修改資料檔案位置(路徑)(移動)Oracle
- oracle 修改資料檔案路徑(四種方式)Oracle
- oracle 資料庫lsnrctl監聽的日誌路徑和trace檔案Oracle資料庫
- gcc g++ 新增標頭檔案路徑和庫檔案路徑的方法GC
- mysql資料庫安裝及預設儲存路徑修改方法MySql資料庫
- win10 onenote如何修改檔案路徑_win10 onenote怎麼修改檔案路徑Win10
- 修改chrome使用者資料的路徑Chrome
- 1.3. 資料庫路徑整合資料庫
- PbootCMS後臺檔案修改路徑位置boot
- Python科研武器庫 - 檔案/路徑操作 - 判斷檔案或資料夾Python
- 更改資料檔案路徑的方法
- 網站檔案修改資料庫,安全高效地修改網站資料庫中的檔案資訊網站資料庫
- oracle11g修改控制檔案路徑Oracle
- 織夢資料庫配置檔案修改資料庫配置方法資料庫
- 修改桌面路徑
- Linux檔案的路徑定位-相對路徑和絕對路徑Linux
- 歸檔路徑更改後,如何對資料庫進行恢復(轉)資料庫
- dedecms資料庫配置檔案所在路徑為:/data/common.inc.php資料庫PHP
- 檔案路徑問題( ./ 和 ../ 和 @/ )
- Python科研武器庫 - 檔案/路徑操作 - 判斷路徑是否存在Python
- [20201112]nid改變資料庫名字.txt資料庫
- python使用pathlib庫 判斷Windows某個路徑下檔案修改日期最晚的檔案PythonWindows
- C++標準庫名字和標頭檔案--表C++
- mysql資料庫新增和修改欄位MySql資料庫
- jenkins 修改訪問路徑Jenkins
- 織夢的資料庫在哪,告訴我路徑資料庫
- Python內建庫:pathlib(檔案路徑操作)Python
- mariadb-2-在centos中修改mariadb資料的儲存路徑CentOS
- 使用批處理指令碼修改指定資料夾(可包含子目錄)中的檔名字尾指令碼
- [重慶思莊每日技術分享]-ORACLE DG物理備庫使用別名資料檔案改變路徑到OMF路徑Oracle
- 遷移資料庫的檔案到不同路徑(轉)資料庫
- zblog的資料庫配置檔案是哪個?怎樣修改資料庫配置資訊?資料庫
- nodejs遞迴資料夾獲取所有檔案路徑NodeJS遞迴
- 網站資料庫如何修改config.php,如何在網站配置檔案中修改資料庫連線資訊網站資料庫PHP