如果自己搞不定可以找诗檀软件专业ORACLE数据库修复团队成员帮您恢复!
诗檀软件专业数据库修复团队
服务热线 : 13764045638 QQ号:47079569 邮箱:service@parnassusdata.com
应用于:
Oracle 数据库 – 企业版 – 10.2.0.4 版以及更高版本
本文档中的信息适用于任何平台。
症状
尝试打开数据库时,会出现下列错误。
ORA-01190: control file or data file 37 is from before the last RESETLOGS
ORA-01110: data file 37: ‘O:\ORADATA\ADMP\ADM_HIR_50GIG.DBF’
ORA-19729: File 37 is not the initial version of the plugged in datafile
原因
可移动的表空间中途出错,导致相关数据文件不能与Oracle控制文件同步。因此之后的重启引起了以下问题。
解决方案
可移动的表空间操作出错引起下列问题,解决方案为:
++ Startup mount the database.
SQL > startup mount;
++ Offline drop offending datafile
SQL > alter database datafile <file#> offline drop;
++ Open the database.
SQL > alter database open;
++ Drop the tablespace holding the offending datafile.
++ Then repeat transportable tablespace procedure for the dropped tablespace.
Comment