zoukankan      html  css  js  c++  java
  • “rman target /” 和 “rman nocatalog target /” 区别【转载】

    原创 Linux操作系统 作者:yxyup 时间:2009-10-20 16:24:20  16146  0

    刚才在itpub上看到一贴 “rman target /” 主要是对 “rman target /” 和 “rman nocatalog target /”这两种方式连接有些疑惑.

    正好偶以前也发现这样的问题,于是将N久前的笔记翻出,又重新测试了一下,详细如下,hehe.

    rman target / 是连接了 target DB并进入了rman环境,这时还可以连接 catalog DB
    rman nocatalog target /  是以nocatalog模式连接进入了target DB,这时是不可以再连接catalog DB了

    详细如下

    oracle@dbatest1:/home/oracle #rman target /

    Recovery Manager: Release 11.2.0.1.0 – Production on Tue Oct 20 15:57:13 2009

    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

    connected to target database: ORA11G (DBID=4092822503)

    RMAN> CONNECT CATALOG system/abc123@stby

    connected to recovery catalog database

    RMAN> exit

    Recovery Manager complete.

    oracle@dbatest1:/home/oracle #rman nocatalog target /

    Recovery Manager: Release 11.2.0.1.0 – Production on Tue Oct 20 15:57:31 2009

    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

    connected to target database: ORA11G (DBID=4092822503)
    using target database control file instead of recovery catalog

    RMAN>  CONNECT CATALOG system/abc123@stby

    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-06445: cannot connect to recovery catalog after NOCATALOG has been used

    RMAN> exit

    Recovery Manager complete.
    oracle@dbatest1:/home/oracle #

     

    来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/7364032/viewspace-617026/,如需转载,请注明出处,否则将追究法律责任。

  • 相关阅读:
    我的云之旅hadoop集群(3)
    动态域名绑定
    我的云之旅hadoop集群集成Hive(4)
    Axis2实践
    PHP Apache Mysql搭建
    JavaEE程序员必读图书大推
    我的云之旅hadoop集群集成Hbase集群(5)
    本博客总排名进入前100
    关系数据库及NoSql图书大推荐
    Last_IO_Errno: 1032
  • 原文地址:https://www.cnblogs.com/eos666/p/13937809.html
Copyright © 2011-2022 走看看