SQL> startup
ORA-16032: parameter LOG_ARCHIVE_DEST destination string cannot be translated
ORA-09291: sksachk: invalid device specified for archive destination
OSD-04018: ??????????????????????????
O/S-Error: (OS 123) ????????????????????????????????
用pfile启动没有问题:SQL> startup pfile='D:\oracle\product\10.2.0\admin\orcl\pfile\init.ora.4302013010'
ORACLE 例程已经启动。Total System Global Area  289406976 bytes
Fixed Size                  1248600 bytes
Variable Size              92275368 bytes
Database Buffers          192937984 bytes
Redo Buffers                2945024 bytes
数据库装载完毕。
数据库已经打开。
怎么解决呢??新手,我是该归档目录后出现的startup启动不起来的。
 

解决方案 »

  1.   

    为什么用startup有事 用startup pfile...就没事
      

  2.   

    我解决了
    解决方法是:
    SQL> create spfile='D:\oracle\product\10.2.0\db_1\dbs\SPFILEORCL.ORA' from pfile
    ='D:\oracle\product\10.2.0\admin\orcl\pfile\init.ora.3292010152030';
    --> startup;
    ORACLE 例程已经启动。Total System Global Area 603979776 bytes
    Fixed Size 1250380 bytes
    Variable Size 163580852 bytes
    Database Buffers 432013312 bytes
    Redo Buffers 7135232 bytes
    数据库装载完毕。
    数据库已经打开。
    谢谢各位。