1、问题细节:ORA-01034: ORACLE not available (连接到空闲例程)
解决方法:
sqlplus /nolog
conn / as sysdba
startup
2、问题细节:alter database open;
错误信息:
ORA-01157: cannot identify/lock data file 2 – see DBWR trace file
ORA-01110: data file 2: 'x:\xxx.dbf';
解决方法:
alter database datafile 'x:\xxx.dbf' offline drop;
shutdown immediate
startup mount
alter database open;
3、