更改Oracle数据文件名字的方法
2008-08-29 12:45:00 来源:WEB开发网在论坛上看到一个经常遇到的问题,移动数据文件,收录一下,以后用得到:
有两种方法可以更改ORACLE数据文件的名字,联机方法与脱机方法。
一:脱机(可以移动任何表空间中的数据文件、日志文件,命令为alter database rename file)
Because the SYSTEM tablespace cannot be taken offline, you must use this method to move data files in the SYSTEM tablespace.
具体步骤为
1:$sqlplus“/assysdba”
SQL>shutdown
2:$mvormove(使用操作系统命令改名字)
3:$sqlplus“/assysdba”
SQL>startupmount
SQL>alterdatabaserenamefile'xxxxx'to'xxxxx'
(注意在alter open之前不要退出)
4:SQL>alter database open;
二:联机(不可移动system表空间,回滚段和临时表空间中的数据文件,命令为alter tablespace )
The following alter tablespace command is applied only to data files in a non-SYSTEM tablespace that does not contain active rollback or temporary segments:
具体步骤为:
1:$sqlplus“/assysdba”;
SQL>altertablespacexxxxoffline(如果非归档加drop);
2:$mvxxxxxxxxxx(用os命令移动数据文件)
3:SQL>altertablespacexxxxrenamedatafile'xxxx'to'xxxxx';
4:SQL>altertablespacexxxxonline;
赞助商链接