Oracle 修改数据文件路径的方法

 

1. 关闭数据库,然后启动至mount状态

sqlplus / as sysdba

shutdown immediate

startup mount

 

Oracle 修改数据文件路径的方法_第1张图片

 

2. 修改物理文件:

我这边将:
c:\cwdata\cwbaseora.dbf
迁移到
c:\cwbaseora.dbf

3. 执行 mount状态下的迁移命令.

 

alter database rename file 'c:\cwdata\cwbaseora.dbf' to 'c:\cwbaseora.dbf';

然后 
alter database open;

 

Oracle 修改数据文件路径的方法_第2张图片

 

4. 使用补丁工具进行验证 能否打开环境等.

Oracle 修改数据文件路径的方法_第3张图片

 

转载于:https://www.cnblogs.com/jinanxiaolaohu/p/10839323.html

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