本来就有的只要创建个用户然后配置catalog数据库就好了

解决方案 »

  1.   

    重建catalog
    1.create tablespace 可以是独立数据库,也可同存
    2.create catalog owner
    3.grant privileges
    4.create catalog
    5.connect with target database
    6.register target databasecreate tablespace rman1 datafile 'd:\rmam01.dbf' size 20m;
    create user rman identified by rman001 default tablespace rman1 quota unlimited on rman1
    temporary tablespace temp;
    grant connect,recovery_catalog_owner to rman;
    rman catalog rman/rman001
    rman>create catalog tablespace rman1;sql>conn rman/man001
    sql>select * from user_tables;
    Rman>connect target rman/rman001;