惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
L
LINUX DO - 热门话题
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Project Zero
Project Zero
V
Vulnerabilities – Threatpost
Cisco Talos Blog
Cisco Talos Blog
P
Palo Alto Networks Blog
C
Cisco Blogs
A
Arctic Wolf
月光博客
月光博客
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
量子位
小众软件
小众软件
Latest news
Latest news
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
T
The Exploit Database - CXSecurity.com
Security Latest
Security Latest
N
Netflix TechBlog - Medium
K
Kaspersky official blog
人人都是产品经理
人人都是产品经理
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
Y
Y Combinator Blog
P
Proofpoint News Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
M
MIT News - Artificial intelligence
T
Threat Research - Cisco Blogs
S
Schneier on Security
D
Docker
Scott Helme
Scott Helme
MyScale Blog
MyScale Blog
Spread Privacy
Spread Privacy
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
GbyAI
GbyAI
有赞技术团队
有赞技术团队
Google DeepMind News
Google DeepMind News
The Hacker News
The Hacker News
H
Help Net Security
Simon Willison's Weblog
Simon Willison's Weblog
J
Java Code Geeks
C
Cyber Attacks, Cyber Crime and Cyber Security
T
Tenable Blog
B
Blog
Know Your Adversary
Know Your Adversary
IT之家
IT之家

博客园 - 塞外风

转载“启动\关闭Oracle数据库的多种方法”--来自百度#Oracle - 塞外风 - 博客园 Oracle查询用户权限角色(dba_sys_privs) (转) Oracle各版本之间Dmp文件的导入导出问题 Oracle11G 的dbconsole无法启动的解决办法 Oracle创建一个用户并赋予其他用户表的访问权限 Microsoft SharePoint Server 2010 产品配置向导注册失败的解决方法 MS SQLServer数据库日志文件丢失的还原方法 千年虫至今还没有消失 Macfee 杀毒软件“签名文件存在8到29天”问题的解决办法! 推荐的firefox扩展 软件推荐-雷鸟 一张图片 美元贬值情景下对人民币升值的看法 Linux下添加HP5500打印机 泰山日出 努力!成功就在眼前! 还是现实点 回来了! 又是一年!
ORA-01033: ORACLE initialization or shutdown in progress 实用的处理方法
塞外风 · 2016-06-08 · via 博客园 - 塞外风

ORA-01033: ORACLE initialization or shutdown in progress 实用的处理方法,此问题通常是由于电脑非正常关机造成的,我们可以用下面的方法查找出是那个文件损坏,再针对文件进行修复。

SQL*Plus: Release 11.1.0.7.0 - Production on 星期三 6月 8 17:34:30 2016

Copyright (c) 1982, 2008, Oracle.  All rights reserved.

SQL> conn sys/sys as sysdba
已连接。
SQL> shutdown immediate;
ORA-01109: 数据库未打开

已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup
ORACLE 例程已经启动。

Total System Global Area  425897984 bytes
Fixed Size                  2130120 bytes
Variable Size             343936824 bytes
Database Buffers           71303168 bytes
Redo Buffers                8527872 bytes
数据库装载完毕。
ORA-01172: 线程 1 的恢复停止在块 990 (在文件 3 中)
ORA-01151: 如果需要, 请使用介质恢复以恢复块和还原备份
--黄色部分中的3就是文件,下面要用到。

SQL> shutdown immediate;
ORA-01109: 数据库未打开

已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup mount
ORACLE 例程已经启动。

Total System Global Area  425897984 bytes
Fixed Size                  2130120 bytes
Variable Size             343936824 bytes
Database Buffers           71303168 bytes
Redo Buffers                8527872 bytes
数据库装载完毕。
SQL> recover datafile 3;
完成介质恢复。
SQL> shutdown immediate;
ORA-01109: 数据库未打开

已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup
ORACLE 例程已经启动。

Total System Global Area  425897984 bytes
Fixed Size                  2130120 bytes
Variable Size             343936824 bytes
Database Buffers           71303168 bytes
Redo Buffers                8527872 bytes
数据库装载完毕。
数据库已经打开。
SQL>