zoukankan      html  css  js  c++  java
  • 关闭归档提示:ORA-38774: cannot disable media recovery

    SQL> select * from v$version;
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
     
    数据库启动到MOUNT状态:
    SQL> alter database noarchivelog;
    alter database noarchivelog
    *
    ERROR at line 1:
    ORA-38774: cannot disable media recovery - flashback database is enabled
     
     
    SQL> select flashback_on from v$database;
     
    FLASHBACK_ON
    ------------------
    YES
     
    SQL> alter database flashback off;
     
    Database altered.
     
    SQL> alter database noarchivelog;
     
    Database altered.
     
    SQL> archive log list
    Database log mode              No Archive Mode
    Automatic archival             Disabled
    Archive destination            L:oradata estarch11
    Oldest online log sequence     227
    Current log sequence           231
  • 相关阅读:
    Docker学习总结(四)--应用部署
    strcat的由来
    ubuntu man不到pthread_mutex_XX
    string::front
    string::find_last_of
    string::find_last_not_of
    string::find_first_of
    string::find_first_not_of
    string::erase
    string::empty
  • 原文地址:https://www.cnblogs.com/rusking/p/4753937.html
Copyright © 2011-2022 走看看