zoukankan      html  css  js  c++  java
  • 归档日志

    RAC
     sqlplus / as sysdba
     SQL> alter system set cluster_database=false scope=spfile; --in node1
     SQL> create pfile='/opt/oracle/pfile_20120301' from spfile; --in node1
     SQL> alter system set log_archive_format='ora11g_%r_%t_%s.log' scope=spfile; --in node1, using default value is ok
     SQL> alter system set log_archive_start=TRUE scope=spfile; --in node1
     SQL> alter system set  log_archive_dest='' scope=spfile; --in node1
     SQL> alter system set  log_archive_dest_1='LOCATION=/oracle/ora_arch' scope=spfile; --in node1 using the specificated DIR
     SQL> shutdown immediate; --two nodes
     SQL> startup mount; --in node1
     SQL> alter database archivelog; --in node1
     SQL> alter database open; --in node1
     SQL> alter system set cluster_database=true scope=spfile; --in node1
     SQL> shutdown immediate; --in node1
     SQL> startup; --in two nodes

     NORAC
     sqlplus / as sysdba
     SQL> create pfile='/opt/oracle/pfile_20120301' from spfile;
     SQL> alter system set log_archive_format='ora11g_%r_%t_%s.log' scope=spfile; --using default value is ok
     SQL> alter system set log_archive_start=TRUE scope=spfile;
     SQL> alter system set  log_archive_dest='' scope=spfile;
     SQL> alter system set  log_archive_dest_1='LOCATION=/oracle/ora_arch' scope=spfile; --using the specificated DIR
     SQL> shutdown immediate;
     SQL> startup mount;
     SQL> alter database archivelog;
     SQL> alter database open;
     SQL> archive log list;

  • 相关阅读:
    Eclipse中Outline里各种图标的含义
    synchronized
    instanceof
    java代码实现rabbitMQ请求
    ftp服务的搭建及调用
    WebService学习总结(三)——使用JDK开发WebService
    Java Web Service 学习
    通俗理解阻塞、非阻塞,同步、异步。
    mongo VUE 操作
    【清华集训2014】主旋律
  • 原文地址:https://www.cnblogs.com/jhcelue/p/6884105.html
Copyright © 2011-2022 走看看