1shutdown immediate
2.startup mount
3.alter database archivelog;
4.archive   log start(打开归档)
5.archive   log list 
6.alter database open;

解决方案 »

  1.   

    原因是shutdown abort和shutdown immediate之间的区别吗
      

  2.   

    我也做了一遍,按照LGQDUCKY(飘) 的步骤是正确的。
      

  3.   

    ORA-00265 instance recovery required, cannot set ARCHIVELOG modeCause: The database either crashed or was shut down with the ABORT option. Media recovery 
    cannot be enabled because the online logs may not be sufficient to recover the current 
    datafiles. Action: Open the database and then enter the SHUTDOWN command with the NORMAL or 
    IMMEDIATE option.
      

  4.   

    你先用命令:startup启动数据库,然后用命令shutdown immediate关闭数据库,然后
    1.startup mount
    2.alter database archivelog;
    3.archive   log start(打开归档)
    4.archive   log list 
    5.alter database open;
      

  5.   

    你不能用shutdown abort
    这个命令直接获得实例锁,关闭实例.
    你必须用
    shutdown abort
    startup
    shutdown
    startup mount
    alter database archivelog;
    archive   log start
    alter database open;
      

  6.   

    shutdown abort会需要recovery的,所以就是错在这里。