zoukankan      html  css  js  c++  java
  • RMAN系列catalog数据库

    oracle@server ~]$ sqlplus / as sysdba

    SQL*Plus: Release 10.2.0.1.0 - Production on Sun Jan 16 14:22:35 2011

    Copyright (c) 1982, 2005, Oracle.  All rights reserved.


    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options


    SQL> select name from v$datafile;

    NAME
    --------------------------------------------------------------------------------
    /oracle/oradata/orcl/system01.dbf
    /oracle/oradata/orcl/undotbs01.dbf
    /oracle/oradata/orcl/sysaux01.dbf
    /oracle/oradata/orcl/users01.dbf
    /oracle/oradata/orcl/example01.dbf
    /oracle/oradata/orcl/jason01.dbf

    6 rows selected.

    SQL> create tablespace rman datafile '/oracle/oradata/orcl/rman01.dbf' size 20m;

    Tablespace created.

    SQL> create user rman identified by rman default tablespace rman quota unlimited on rman;

    User created.

    SQL> grant recovery_catalog_owner to rman;

    Grant succeeded.

    SQL> select * from dba_sys_privs where grantee='connect';

    no rows selected

    SQL> select * from dba_sys_privs where grantee='CONNECT';

    GRANTEE                        PRIVILEGE                                ADM
    ------------------------------ ---------------------------------------- ---
    CONNECT                        CREATE SESSION                           NO

    SQL> grant connect to rman;

    Grant succeeded.

    SQL> grant resource to rman;

    Grant succeeded.

    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    [oracle@server ~]$ clear

    [oracle@server ~]$ rman target/

    Recovery Manager: Release 10.2.0.1.0 - Production on Sun Jan 16 14:51:27 2011

    Copyright (c) 1982, 2005, Oracle.  All rights reserved.

    connected to target database: ORCL (DBID=1268348214)

    RMAN> connect catalog rman/rman

    connected to recovery catalog database

    RMAN> create catalog;

    recovery catalog created

    RMAN> register database;

    database registered in recovery catalog
    starting full resync of recovery catalog
    full resync complete

    RMAN>
    注这里必须先连接target database 再连接catalog database 要不register database;报

    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of register command at 01/16/2011 14:45:19
    RMAN-06171: not connected to target database

    rman同时连接target database和catalog database

    [oracle@server ~]$ rman target/ catalog rman/rman

    Recovery Manager: Release 10.2.0.1.0 - Production on Sun Jan 16 14:54:47 2011

    Copyright (c) 1982, 2005, Oracle.  All rights reserved.

    connected to target database: ORCL (DBID=1268348214)
    connected to recovery catalog database

    RMAN>

  • 相关阅读:
    (hdu 7.1.8)Quoit Design(最低点——在n一个点,发现两点之间的最小距离)
    [Windows]_[0基础]_[使用命令行工具dumpbin分析文件]
    《走开》反馈
    二分基础
    日历的问题C语言,C++(boost),python,Javascript,Java和Matlab实现
    Unity3D 游戏开发架构篇 ——性格一流的设计和持久性
    2015第54周四
    2015第54周三
    2015第54周二
    2015第54周一
  • 原文地址:https://www.cnblogs.com/datalife/p/1985417.html
Copyright © 2011-2022 走看看