oracle 10g +ASM 启动

今天oracle 10g服务突然断电,导致数据库服务器无法启动,报错ora-00205,找不到控制文件,在google上找了很多,但都不敢确定,oracle 使用asm管理,对oracle不熟悉,网上的方案都不敢确定,
oracle能加载到nomount状态
后来找到以前的解决方案
在shell下执行
export ORACLE_SID=+ASM
sqlplus /nolog
>connect sys/oracleasm as sysdba
>startup
启动ASM
退出sqlplus
shell下执行
export ORACLE_SID=ora10g
isqlplusctl start
sqlplus /nolog
>connect sys/oracle as sysdba
>startup
启动数据库,ok
ASM管理的数据库存储,跟一般的有点不一样,需要先启动ASM,然后才能启动ORALCE数据库

你可能感兴趣的:(oracle,Google)