一。Oracle817用svrmgrl,Oracle9以上用sqlplus '/as dba'进入管理界面:
shutdown immediate
二。找到数据库的所有文件,并用操作系统备份数据库文件
1. init.ora
2. control file
3. select * from v$datafile
4. select * from v$logfile
三。复制到新机器,如果文件目录完全一致,则
1. copy
2. alter database recover database until cancel;
2. alter database open resetlogs;
四。复制到新机器,如果文件的位置与旧机器不一样,则需要修改
1. copy new location
2. startup mount
3. alter database rename file 'xxxx' to 'yyyy';
4. alter database recover database until cancel;
5. alter database recover cancel;
6. alter database open resetlogs;
7. alter database open
五。完成。