当前位置:网站首页>Oracle实例无法启动的问题如何解决
Oracle实例无法启动的问题如何解决
2022-07-28 22:35:00 【青木与风】
SQL> startup
ORACLE instance started.
Total System Global Area 1653518336 bytes
Fixed Size 2228904 bytes
Variable Size 1207962968 bytes
Database Buffers 436207616 bytes
Redo Buffers 7118848 bytes
Database mounted.
ORA-03113: end-of-file on communication channel
Process ID: 6428
Session ID: 125 Serial number: 5
在启动数据库时出现以上的问题
出现这个问题可能由于断电数据库被强制异常关闭,导致文件状态可能不一致,因为正常关闭数据库会同步校验各文件,使得重新启动的时候文件时间点一致。
解决方法:
1.启动数据库到mount状态
SQL>conn / as sysdba
SQL> startup mount
2.查看v$log再重置日志
SQL> select * from v$log;
SQL> alter database open resetlogs 2;
3.恢复数据库日志
SQL> alter database open resetlogs;
SQL> recover database until time '2022-07-20' (恢复到故障时间点)
SQL> alter database open resetlogs;
边栏推荐
- Opencv macro definition
- 递归/回溯刷题(中)
- CV target detection model sketch (2)
- Control fillet stroke materialshapedrawable
- Virtual lab basic experiment tutorial -8. Fourier transform (1)
- Oracle super full SQL, details crazy
- Eye of depth (18) -- partial derivative
- Software designer afternoon question
- What does the expression > > 0 in JS mean
- MySQL安装配置教程(超级详细、保姆级)
猜你喜欢
ACM SIGIR 2022 | interpretation of selected papers of meituan technical team
12个MySQL慢查询的原因分析
IDEA报错Error running ‘Application‘ Command line is too long解决方案
Advanced area of attack and defense world web masters -baby Web
Google browser, no installation required
Dynamic programming problem (VII)
Sword finger offer 41. median in data flow
Recursion / backtracking (Part 2)
聊聊异步编程的 7 种实现方式
面试被问到了String相关的几道题,你能答上来吗?
随机推荐
[CNN] Why is the convolution kernel size of CNN usually odd
PTA (daily question) 7-71 character trapezoid
CV instance segmentation model sketch (1)
Recursion / backtracking (middle)
Simple use and understanding of laravel message queue
PTA (daily question) 7-70 diamond
Event extraction and documentation (2018)
@Transactional 注解使用详解
PHP语言基础知识(超详细)
Attack and defense world web master advanced area web_ php_ include
MQ 消息丢失、重复、积压问题,如何解决?
vulnhub:BTRSys2
vulnhub:Sar
Why is it so difficult for the SEC to refuse the application for transferring gray-scale GBTC to spot ETF? What is the attraction of ETF transfer?
Detailed explanation of the usage of exists in MySQL
Applet waterfall flow, upload pictures, simple use of maps
html+css+php+mysql实现注册+登录+修改密码(附完整代码)
Eye of depth (18) -- partial derivative
CV target detection model sketch (2)
vscode下链接远程服务器安装插件失败、速度慢等解决方法