千家信息网

ora-01189故障解决办法

发表于:2025-11-07 作者:千家信息网编辑
千家信息网最后更新 2025年11月07日,ORA-01189: 文件来自于与先前文件不同的 RESETLOGSORA-01110: 数据文件 4: 'D:\ORCLDATA\XEPACS\USERS01.DBF'ORA-01189解释:Cau
千家信息网最后更新 2025年11月07日ora-01189故障解决办法

ORA-01189: 文件来自于与先前文件不同的 RESETLOGS
ORA-01110: 数据文件 4: 'D:\ORCLDATA\XEPACS\USERS01.DBF'
ORA-01189解释:
Cause: In a CREATE CONTROLFILE command, either this file or all previous files were backups from before the last RESETLOGS. This also may occur if this is a file that is offline and has been offline since before the last RESETLOGS.
Action: If the file was taken offline normally before the last RESETLOGS and is still offline, omit it from the CREATE CONTROLFILE command. Rename and online the file after the database is open. Otherwise, find the version of the mentioned file consistent with the rest of the datafiles and retry the command.
1 跳过有问题的数据文件重建控制文件或只用system01.dbf重建;

2 resetlogs打开数据库 ,注意更改undo相关参数为manual;

    alter system set "_allow_resetlogs_corruption"=true scope=spfile    alter system set audit_trail=none scope=spfile;    alter system set undo_management=MANUAL scope=spfile;

3 启动后rename 有问题的datafile

alter database rename file 'D:\ORACLE\PRODUCT\10.2.0\DBHOME_1\DATABASE\MISSING00004' to 'd:\orcldata\xepacs\users01.dbf';

由于scn较低,需要重新resetlogs调成一致,或者用bbed调整;
#4 推进scn
ALTER SESSION SET EVENTS 'IMMEDIATE TRACE NAME ADJUST_SCN LEVEL 1';
LEVEL: Level 1 is usually sufficient - it raises the SCN to 1 billion
5 alter database datafile 4 online;
startup mount;
SQL> recover until cancel;
完成介质恢复。
SQL> alter database datafile 4 online;
数据库已更改。

6 SQL> alter database open resetlogs;
此场景适用于offline了很久的数据文件,再online,丢失归档,或者数据库意外宕机

数据 文件 数据库 问题 不同 一致 意外 介质 参数 场景 控制 解释 调整 办法 故障 数据库的安全要保护哪些东西 数据库安全各自的含义是什么 生产安全数据库录入 数据库的安全性及管理 数据库安全策略包含哪些 海淀数据库安全审计系统 建立农村房屋安全信息数据库 易用的数据库客户端支持安全管理 连接数据库失败ssl安全错误 数据库的锁怎样保障安全 深圳市观澜行政服务器 往百度智能云服务器传文件 深圳小牛网络技术有限公司 delphine数据库建设 广州市高易网络技术有限公司 大闹天宫配音软件开发 青海戴尔服务器虚拟化设计服务器 网络设置服务器异常 龙口游戏软件开发公司电话 网络技术开发实训报告 在通常情况下什么不是数据库对象 香港快速服务器 matlab服务器配置要求 奉贤区信息软件开发机构整顿 医学生网络安全海报 计算机网络技术基础重要 阿里服务器云盘收费 租赁管理软件开发公司 国有企业网络安全吗 电脑软件开发包括哪些 网络安全宣传日线上活动 红河州公安局网络安全保密记录 建立软件开发平台 电脑无法连接服务器拨号 cf绿色服务器多少分能进 我的世界网易版怎么在服务器里做32K 软件开发工程师的自身优势 普陀区辅助软件开发优化价格 酒店云桌面需要什么类型的服务器 河北进口软件开发设计
0