• 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>

  • 相关阅读:
    列表的常用的方法(内建函数)
    关于集合
    scribe、chukwa、kafka、flume日志系统对比
    iptables,lokkit,ebtables,arptables---logrotate
    MTA---smtp(25,postfix,sendmail),Pop3(110,Devocot), MUA(foxmail) IMAP(server,client rsync)
    DNS named. bind linux (ACL/View)---dnsmasq-with docker,hosts in docker.
    javascript closure
    Typed Arrays in javascripts
    OpenPGP协议的一个JavaScript实现:OpenPGP.js
    公有云安全工具
  • 原文地址:https://www.cnblogs.com/datalife/p/1985417.html
Copyright © 2020-2023  润新知